Skip to content
New issue

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

String shouldNotContain Char #98

Closed
AndreasVolkmann opened this issue Mar 21, 2018 · 1 comment
Closed

String shouldNotContain Char #98

AndreasVolkmann opened this issue Mar 21, 2018 · 1 comment

Comments

@AndreasVolkmann
Copy link
Collaborator

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())

@MarkusAmshove
Copy link
Owner

Will be in 1.36 😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants