Hello :wave: is there a reason for <https://github...
# kotest
t
Hello 👋 is there a reason for https://github.com/kotest/kotest/commit/310338661ce8225bdbf276b555a48e5c59d5371a#diff-6087beb5b72897e627008db4414[…]ac1ba83bdc422bb5b1e07936bd649R23 returning nullable?
null shouldBe true
would anyway fail, so it should be possible to return non nullable. the "issue" with returning nullable is that something like
true.shouldBeTrue().toArray()
does not compile anymore, it has to be
true.shouldBeTrue()?.toArray()
with all the chaining issue (I should mention
toArray
is a custom extension function expecting a non-nullable receiver)