David Fallah
11/21/2018, 9:21 AMFoo<T>
and resolve Foo<Int>
or Foo<String>
.Andreas Sinz
11/21/2018, 5:30 PMFoo<T>
and retrieve Foo<Int>
back?David Fallah
11/22/2018, 8:09 AMFoo<>
and be able to resolve Foo<Int>
, Foo<String>
or Foo<T>
for any other sort of T
that I ask for, by creating an instance of that generic type with the specified type argument(s)David Fallah
11/22/2018, 8:09 AMAndreas Sinz
11/22/2018, 9:45 AMDavid Fallah
11/22/2018, 3:32 PMAndreas Sinz
11/22/2018, 3:38 PMList<Int>
and a List<Double>
alongside and retrieve one of them based on the generic type, not that you can bind a List<T>
and create generic instances (e.g. List<T>
) at runtimeDavid Fallah
11/23/2018, 8:10 AM