ilist<A> function

IList<A> ilist<A>(
  1. Iterable<A> as
)

Creates an IList from a Dart Iterable.

final l = ilist([1, 2, 3]);

Implementation

IList<A> ilist<A>(Iterable<A> as) => IList.fromDart(as);