``` typealias init = (Int) -> Int fun main(arg...
# language-proposals
j
Copy code
typealias init = (Int) -> Int

fun main(args: Array<String>) {
    val a: init? = null
    
}
👍 4
b
typealias adds even more letters to keyboard typing
g
The most important is to be clear, not to be concise. I agree that typealias is the best solution, much easier to read than
((A) -> B)?
,
(A) ->? B
or
(A) ?-> B
to me.