sindrenm
@optics data class Stuff(val maybeString: String?) { companion object } fun main() { val someStuff = Stuff("Value") Stuff.maybeString.set(someStuff, null) // => Null can not be a value of a non-null type String }
than_
nullableMaybeString
A modern programming language that makes developers happier.