I’m not very familiar with swift, but I believe th...
# getting-started
d
I’m not very familiar with swift, but I believe that is a null guard statement? Kotlin uses flow sensitive typing so just an if statement can serve the same role.
Copy code
val nullable: Foo? = Foo()
if(nullable != null){
  nullable.doSomething() //the compiler knows this is safe
}