why can't I do some like `typealias Nullable<T&...
# announcements
e
why can't I do some like
typealias Nullable<T> = T?
(it's kinda useless, but I have to do similar one)
s
What’s the actual example?
s
Types can take parameters, but they can’t be a type-parameter themselves… Kotlin does not have higher-kind types…
typealias
is much like copy&paste, but I guess that the ‘pasted’ result still must be a valid type (and not a type-parameter).
e
is it higher-kind type??