Lazy::List<a> take(Int n, Lazy::List<a> xs)
Arguments
n: The number of values to takexs: The list to take values from
Usage
Take the first n values from a lazy list, returning a new lazy list only containing those values.
n: The number of values to takexs: The list to take values fromTake the first n values from a lazy list, returning a new lazy list only containing those values.