Package: effect
Module: Iterable
Keep only a max number of elements from the start of an Iterable, creating a new Iterable.
Note. n is normalized to a non negative integer.
Signature
declare const take: { (n: number): <A>(self: Iterable<A>) => Iterable<A>; <A>(self: Iterable<A>, n: number): Iterable<A>; }
Since v2.0.0