raulraja
val
operator fun Option<Int>.inc(): Option<Int> = this.map { it + 1 } object test { val x = Option(0) val y = x++ }