There are times (mostly when needing to import mul...
# language-evolution
p
There are times (mostly when needing to import multiple types with clashing names) that I'd like to take the golang approach of importing (potentially with an alias) an entire package and using qualified references. This can kinda be simulated with
-Xnested-type-aliases
by declaring an otherwise empty
object
containing only type aliases for the types you want to 'export'.
🧠 1
m
p
I will do so, thank you