simon.vergauwen
choose
Any
Arb.Companion.choice
arbs
fun <A> Arb.Companion.`null`(): Arb<A?> = Arb.constant(null) fun <A> Arb<A>.nullable(): Arb<A?> = Arb.choice(arbs= this, Arb.`null`())
sam
fun <A> Arb<A>.nullable(): Arb<A?> = Arb.choice(this, Arb.`null`())
4.0.5
A modern programming language that makes developers happier.