Skip to content

Instantly share code, notes, and snippets.

@sliskiCode
Last active November 24, 2016 15:33
Show Gist options
  • Select an option

  • Save sliskiCode/4ab12eaa2f13fccf1566b001c9c6d28d to your computer and use it in GitHub Desktop.

Select an option

Save sliskiCode/4ab12eaa2f13fccf1566b001c9c6d28d to your computer and use it in GitHub Desktop.
7 things you probably don’t know about Kotlin #10
var price: Double by Delegates.vetoable(0.0) { prop, old, new ->
validate(new)
}
fun validate(price: Double) : Boolean {
// Validation checks
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment