| Iterates over elements of collection and invokes iteratee for each element.
The iteratee is invoked with three arguments: (value, index|key, collection).
Iteratee functions may exit iteration early by explicitly returning false .
|
| This method is like _.forEach except that it iterates over elements of
collection from right to left.
|
| Checks if predicate returns truthy for all elements of collection .
Iteration is stopped once predicate returns falsey. The predicate is
invoked with three arguments: (value, index|key, collection).
|
| Iterates over elements of collection , returning an array of all elements
predicate returns truthy for. The predicate is invoked with three
arguments: (value, index|key, collection).
|
| Creates a flattened array of values by running each element in collection
thru iteratee and flattening the mapped results. The iteratee is invoked
with three arguments: (value, index|key, collection).
|
| This method is like _.flatMap except that it recursively flattens the
mapped results.
|
| This method is like _.flatMap except that it recursively flattens the
mapped results up to depth times.
|
| Iterates over elements of collection and invokes iteratee for each element.
The iteratee is invoked with three arguments: (value, index|key, collection).
Iteratee functions may exit iteration early by explicitly returning false .
|
| This method is like _.forEach except that it iterates over elements of
collection from right to left.
|
| Checks if value is in collection . If collection is a string, it's
checked for a substring of value , otherwise
SameValueZero
is used for equality comparisons. If fromIndex is negative, it's used as
the offset from the end of collection .
|
| Creates an array of values by running each element in collection thru
iteratee . The iteratee is invoked with three arguments:
(value, index|key, collection).
|
| This method is like _.sortBy except that it allows specifying the sort
orders of the iteratees to sort by. If orders is unspecified, all values
are sorted in ascending order. Otherwise, specify an order of "desc" for
descending or "asc" for ascending sort order of corresponding values.
|
| Reduces collection to a value which is the accumulated result of running
each element in collection thru iteratee , where each successive
invocation is supplied the return value of the previous. If accumulator
is not given, the first element of collection is used as the initial
value. The iteratee is invoked with four arguments:
(accumulator, value, index|key, collection).
|
| This method is like _.reduce except that it iterates over elements of
collection from right to left.
|
| The opposite of _.filter ; this method returns the elements of collection
that predicate does not return truthy for.
|
| Gets a random element from collection .
|
| Gets n random elements at unique keys from collection up to the
size of collection .
|
| |
| Gets the size of collection by returning its length for array-like
values or the number of own enumerable string keyed properties for objects.
|
| Checks if predicate returns truthy for any element of collection .
Iteration is stopped once predicate returns truthy. The predicate is
invoked with three arguments: (value, index|key, collection).
|