I'm trying to create a pair of containers similar ...
# getting-started
r
I'm trying to create a pair of containers similar to `List`/`MutableList` but with the same concept recursively applied to generic parameters as well. In other words, something akin to
Copy code
typealias FOO = List<List<String>>
typealias BAR = MutableList<MutableList<String>>
but with generics specifying the
List<String>
and
MutableList<String>