Package: effect
Module: Iterable
Append an element to the end of an Iterable, creating a new Iterable.
Signature
declare const append: { <B>(last: B): <A>(self: Iterable<A>) => Iterable<A | B>; <A, B>(self: Iterable<A>, last: B): Iterable<A | B>; }
Since v2.0.0