Paul Woitaschek
hho
value
@ExperimentalContracts fun isValidEmail(value: String?): Boolean { contract { returns(true) implies (value != null) } return value != null && mailRegex.matches(value) }
Stephan Schroeder
this
A modern programming language that makes developers happier.