ListExtensions<T> extension
Null safety
- on
-
- List<
T>
- List<
Methods
-
interleave(
T x) → List< List< T> > - Returns all the ways to insert a new element into a list. [...]
-
perms(
) → List< List< T> > - Returns all the permutation of a list. [...]
-
product(
int repeat) → List< List< T> > - Returns all the Cartesian product of a list. [...]
-
subs(
) → List< List< T> > - Returns the all partial list of the list. [...]