```fun <T> notNull(block:() -> T?) : T? {...
# announcements
b
Copy code
fun <T> notNull(block:() -> T?) : T? {
        return block()
    }