Would it help if I wrote the following? ```@Compos...
# compose
m
Would it help if I wrote the following?
Copy code
@Composable
inline fun <reified T, reified L: List<T>> MyListOfItems(items: L) {
    // ...
}
🚫 2
t
Why not
ImmutableList<T>
? Or what do you mean?
s
Not really, it is still generic over
List
from the compiler perspective