How come this works? ```val email = "".takeIf { it...
# getting-started
a
How come this works?
Copy code
val email = "".takeIf { it.contains("@") }
val ok: String = email.toString()
Doesn't takeIf return
T?
?