plus method

  1. @override
IList<A> plus(
  1. covariant IList<A> l2
)
override

Implementation

@override IList<A> plus(IList<A> l2) => foldRight(l2, (e, p) => new Cons(e, p));