validatedLongProperty  
  fun validatedLongProperty(initialValue: Long, validation: (ValidatedProperty<Long>, Long, Long) -> Long): PropertyDelegate<Long, LongProperty>
A Kotlin delegate to create a ValidatedLongProperty. Typical usage :
val fooProperty by validatedLongProperty( initialValue ) { value -> ... }
var foo by fooPropertyContent copied to clipboard