Exemplo n.º 1
0
 public IImmutableList <R> ToList() =>
 Prelude.toList(AsEnumerable());
Exemplo n.º 2
0
 public Lst <T> ToList() =>
 Prelude.toList(AsEnumerable());
Exemplo n.º 3
0
 public static IImmutableList <T> freeze <T>(IEnumerable <T> list) =>
 Prelude.toList(list);
Exemplo n.º 4
0
 public static Task <Lst <A> > toListAsync <OPT, OA, A>(OA ma)
     where OPT : struct, OptionalAsync <OA, A> =>
 toArrayAsync <OPT, OA, A>(ma).Map(arr => Prelude.toList(arr));
Exemplo n.º 5
0
 public static IImmutableList <Either <T, Exception> > ToList <T>(this TryOption <T> self) =>
 Prelude.toList(self.AsEnumerable());