Skip to content

Instantly share code, notes, and snippets.

@jwalgemoed
Created September 14, 2018 08:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jwalgemoed/0a2f5de493baa3ed4118014a0fdd742d to your computer and use it in GitHub Desktop.
Save jwalgemoed/0a2f5de493baa3ed4118014a0fdd742d to your computer and use it in GitHub Desktop.
@ExperimentalContracts
fun User?.isComplete(): Boolean {
contract { returns(true) implies (this@isComplete != null) }
return this != null && this.isValid()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment