Lines Matching refs:collection

865 of `collection` from right to left.
2496 <h3 id="_countbycollection-iteratee_identity"><code>_.countBy(collection, [iteratee=_.identity])</c…
2500 each element of `collection` thru `iteratee`. The corresponding value of
2508 1. `collection` *(Array|Object)*: The collection to iterate over.
2529 <h3 id="_everycollection-predicate_identity"><code>_.every(collection, [predicate=_.identity])</cod…
2532 Checks if `predicate` returns truthy for **all** elements of `collection`.
2534 invoked with three arguments: *(value, index|key, collection)*.
2546 1. `collection` *(Array|Object)*: The collection to iterate over.
2580 <h3 id="_filtercollection-predicate_identity"><code>_.filter(collection, [predicate=_.identity])</c…
2583 Iterates over elements of `collection`, returning an array of all elements
2585 arguments: *(value, index|key, collection)*.
2594 1. `collection` *(Array|Object)*: The collection to iterate over.
2628 <h3 id="_findcollection-predicate_identity-fromindex0"><code>_.find(collection, [predicate=_.identi…
2631 Iterates over elements of `collection`, returning the first element
2633 arguments: *(value, index|key, collection)*.
2639 1. `collection` *(Array|Object)*: The collection to inspect.
2675 …y-fromindexcollectionlength-1"><code>_.findLast(collection, [predicate=_.identity], [fromIndex=col…
2679 `collection` from right to left.
2685 1. `collection` *(Array|Object)*: The collection to inspect.
2687 3. `[fromIndex=collection.length-1]` *(number)*: The index to search from.
2705 <h3 id="_flatmapcollection-iteratee_identity"><code>_.flatMap(collection, [iteratee=_.identity])</c…
2708 Creates a flattened array of values by running each element in `collection`
2710 with three arguments: *(value, index|key, collection)*.
2716 1. `collection` *(Array|Object)*: The collection to iterate over.
2737 <h3 id="_flatmapdeepcollection-iteratee_identity"><code>_.flatMapDeep(collection, [iteratee=_.ident…
2747 1. `collection` *(Array|Object)*: The collection to iterate over.
2768 <h3 id="_flatmapdepthcollection-iteratee_identity-depth1"><code>_.flatMapDepth(collection, [iterate…
2778 1. `collection` *(Array|Object)*: The collection to iterate over.
2800 <h3 id="_foreachcollection-iteratee_identity"><code>_.forEach(collection, [iteratee=_.identity])</c…
2803 Iterates over elements of `collection` and invokes `iteratee` for each element.
2804 The iteratee is invoked with three arguments: *(value, index|key, collection)*.
2819 1. `collection` *(Array|Object)*: The collection to iterate over.
2823 *(&#42;)*: Returns `collection`.
2843 <h3 id="_foreachrightcollection-iteratee_identity"><code>_.forEachRight(collection, [iteratee=_.ide…
2847 `collection` from right to left.
2856 1. `collection` *(Array|Object)*: The collection to iterate over.
2860 *(&#42;)*: Returns `collection`.
2875 <h3 id="_groupbycollection-iteratee_identity"><code>_.groupBy(collection, [iteratee=_.identity])</c…
2879 each element of `collection` thru `iteratee`. The order of grouped values
2880 is determined by the order they occur in `collection`. The corresponding
2888 1. `collection` *(Array|Object)*: The collection to iterate over.
2909 <h3 id="_includescollection-value-fromindex0"><code>_.includes(collection, value, [fromIndex=0])</c…
2912 Checks if `value` is in `collection`. If `collection` is a string, it's
2916 the offset from the end of `collection`.
2922 1. `collection` *(Array|Object|string)*: The collection to inspect.
2949 <h3 id="_invokemapcollection-path-args"><code>_.invokeMap(collection, path, [args])</code></h3>
2952 Invokes the method at `path` of each element in `collection`, returning
2955 for, and `this` bound to, each element in `collection`.
2961 1. `collection` *(Array|Object)*: The collection to iterate over.
2982 <h3 id="_keybycollection-iteratee_identity"><code>_.keyBy(collection, [iteratee=_.identity])</code>…
2986 each element of `collection` thru `iteratee`. The corresponding value of
2994 1. `collection` *(Array|Object)*: The collection to iterate over.
3021 <h3 id="_mapcollection-iteratee_identity"><code>_.map(collection, [iteratee=_.identity])</code></h3>
3024 Creates an array of values by running each element in `collection` thru
3026 *(value, index|key, collection)*.
3043 1. `collection` *(Array|Object)*: The collection to iterate over.
3076 <h3 id="_orderbycollection-iteratees_identity-orders"><code>_.orderBy(collection, [iteratees=[_.ide…
3088 1. `collection` *(Array|Object)*: The collection to iterate over.
3114 <h3 id="_partitioncollection-predicate_identity"><code>_.partition(collection, [predicate=_.identit…
3126 1. `collection` *(Array|Object)*: The collection to iterate over.
3161 <h3 id="_reducecollection-iteratee_identity-accumulator"><code>_.reduce(collection, [iteratee=_.ide…
3164 Reduces `collection` to a value which is the accumulated result of running
3165 each element in `collection` thru `iteratee`, where each successive
3167 is not given, the first element of `collection` is used as the initial
3169 *(accumulator, value, index|key, collection)*.
3184 1. `collection` *(Array|Object)*: The collection to iterate over.
3210 <h3 id="_reducerightcollection-iteratee_identity-accumulator"><code>_.reduceRight(collection, [iter…
3214 `collection` from right to left.
3220 1. `collection` *(Array|Object)*: The collection to iterate over.
3242 <h3 id="_rejectcollection-predicate_identity"><code>_.reject(collection, [predicate=_.identity])</c…
3245 The opposite of `_.filter`; this method returns the elements of `collection`
3252 1. `collection` *(Array|Object)*: The collection to iterate over.
3286 <h3 id="_samplecollection"><code>_.sample(collection)</code></h3>
3289 Gets a random element from `collection`.
3295 1. `collection` *(Array|Object)*: The collection to sample.
3311 <h3 id="_samplesizecollection-n1"><code>_.sampleSize(collection, [n=1])</code></h3>
3314 Gets `n` random elements at unique keys from `collection` up to the
3315 size of `collection`.
3321 1. `collection` *(Array|Object)*: The collection to sample.
3341 <h3 id="_shufflecollection"><code>_.shuffle(collection)</code></h3>
3351 1. `collection` *(Array|Object)*: The collection to shuffle.
3367 <h3 id="_sizecollection"><code>_.size(collection)</code></h3>
3370 Gets the size of `collection` by returning its length for array-like
3377 1. `collection` *(Array|Object|string)*: The collection to inspect.
3380 *(number)*: Returns the collection size.
3399 <h3 id="_somecollection-predicate_identity"><code>_.some(collection, [predicate=_.identity])</code>…
3402 Checks if `predicate` returns truthy for **any** element of `collection`.
3404 invoked with three arguments: *(value, index|key, collection)*.
3410 1. `collection` *(Array|Object)*: The collection to iterate over.
3444 <h3 id="_sortbycollection-iteratees_identity"><code>_.sortBy(collection, [iteratees=[_.identity]])<…
3448 running each element in a collection thru each iteratee. This method
3456 1. `collection` *(Array|Object)*: The collection to iterate over.
5064 Checks if `value` is an empty object, collection, map, or set.
7300 a collection in the opposite order.