We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Seems we are missing a function to check whether a String contains a Char.
val c: Char = "a".first() "some text" shouldNotContain c // does not compile
Easy fix: infix fun String.shouldNotContain(char: Char) = shouldNotContain(char.toString())
infix fun String.shouldNotContain(char: Char) = shouldNotContain(char.toString())
The text was updated successfully, but these errors were encountered:
Assert that a CharSequence contains a Char. #98
2592435
Will be in 1.36 😄
Sorry, something went wrong.
No branches or pull requests
Seems we are missing a function to check whether a String contains a Char.
Easy fix:
infix fun String.shouldNotContain(char: Char) = shouldNotContain(char.toString())
The text was updated successfully, but these errors were encountered: