Lines Matching refs:predicate

682 <h3 id="_droprightwhilearray-predicate_identity"><code>_.dropRightWhile(array, [predicate=_.identit…
686 Elements are dropped until `predicate` returns falsey. The predicate is
694 2. `[predicate=_.identity]` *(Function)*: The function invoked per iteration.
728 <h3 id="_dropwhilearray-predicate_identity"><code>_.dropWhile(array, [predicate=_.identity])</code>…
732 Elements are dropped until `predicate` returns falsey. The predicate is
740 2. `[predicate=_.identity]` *(Function)*: The function invoked per iteration.
815 <h3 id="_findindexarray-predicate_identity-fromindex0"><code>_.findIndex(array, [predicate=_.identi…
819 element `predicate` returns truthy for instead of the element itself.
826 2. `[predicate=_.identity]` *(Function)*: The function invoked per iteration.
861 …redicate_identity-fromindexarraylength-1"><code>_.findLastIndex(array, [predicate=_.identity], [fr…
872 2. `[predicate=_.identity]` *(Function)*: The function invoked per iteration.
1322 to remove elements from an array by predicate.
1486 <h3 id="_removearray-predicate_identity"><code>_.remove(array, [predicate=_.identity])</code></h3>
1489 Removes all elements from `array` that `predicate` returns truthy for
1490 and returns an array of the removed elements. The predicate is invoked
1502 2. `[predicate=_.identity]` *(Function)*: The function invoked per iteration.
1915 <h3 id="_takerightwhilearray-predicate_identity"><code>_.takeRightWhile(array, [predicate=_.identit…
1919 taken until `predicate` returns falsey. The predicate is invoked with
1927 2. `[predicate=_.identity]` *(Function)*: The function invoked per iteration.
1961 <h3 id="_takewhilearray-predicate_identity"><code>_.takeWhile(array, [predicate=_.identity])</code>…
1965 are taken until `predicate` returns falsey. The predicate is invoked with
1973 2. `[predicate=_.identity]` *(Function)*: The function invoked per iteration.
2529 <h3 id="_everycollection-predicate_identity"><code>_.every(collection, [predicate=_.identity])</cod…
2532 Checks if `predicate` returns truthy for **all** elements of `collection`.
2533 Iteration is stopped once `predicate` returns falsey. The predicate is
2547 2. `[predicate=_.identity]` *(Function)*: The function invoked per iteration.
2550 *(boolean)*: Returns `true` if all elements pass the predicate check, else `false`.
2580 <h3 id="_filtercollection-predicate_identity"><code>_.filter(collection, [predicate=_.identity])</c…
2584 `predicate` returns truthy for. The predicate is invoked with three
2595 2. `[predicate=_.identity]` *(Function)*: The function invoked per iteration.
2628 <h3 id="_findcollection-predicate_identity-fromindex0"><code>_.find(collection, [predicate=_.identi…
2632 `predicate` returns truthy for. The predicate is invoked with three
2640 2. `[predicate=_.identity]` *(Function)*: The function invoked per iteration.
2675 …ate_identity-fromindexcollectionlength-1"><code>_.findLast(collection, [predicate=_.identity], [fr…
2686 2. `[predicate=_.identity]` *(Function)*: The function invoked per iteration.
3114 <h3 id="_partitioncollection-predicate_identity"><code>_.partition(collection, [predicate=_.identit…
3118 contains elements `predicate` returns truthy for, the second of which
3119 contains elements `predicate` returns falsey for. The predicate is
3127 2. `[predicate=_.identity]` *(Function)*: The function invoked per iteration.
3242 <h3 id="_rejectcollection-predicate_identity"><code>_.reject(collection, [predicate=_.identity])</c…
3246 that `predicate` does **not** return truthy for.
3253 2. `[predicate=_.identity]` *(Function)*: The function invoked per iteration.
3399 <h3 id="_somecollection-predicate_identity"><code>_.some(collection, [predicate=_.identity])</code>…
3402 Checks if `predicate` returns truthy for **any** element of `collection`.
3403 Iteration is stopped once `predicate` returns truthy. The predicate is
3411 2. `[predicate=_.identity]` *(Function)*: The function invoked per iteration.
3414 *(boolean)*: Returns `true` if any element passes the predicate check, else `false`.
4028 <h3 id="_negatepredicate"><code>_.negate(predicate)</code></h3>
4031 Creates a function that negates the result of the predicate `func`. The
4032 `func` predicate is invoked with the `this` binding and arguments of the
4039 1. `predicate` *(Function)*: The predicate to negate.
4648 Checks if `object` conforms to `source` by invoking the predicate
7251 <h3 id="_findkeyobject-predicate_identity"><code>_.findKey(object, [predicate=_.identity])</code></…
7255 element `predicate` returns truthy for instead of the element itself.
7262 2. `[predicate=_.identity]` *(Function)*: The function invoked per iteration.
7296 <h3 id="_findlastkeyobject-predicate_identity"><code>_.findLastKey(object, [predicate=_.identity])<…
7307 2. `[predicate=_.identity]` *(Function)*: The function invoked per iteration.
8023 <h3 id="_omitbyobject-predicate_identity"><code>_.omitBy(object, [predicate=_.identity])</code></h3>
8028 `predicate` doesn't return truthy for. The predicate is invoked with two
8036 2. `[predicate=_.identity]` *(Function)*: The function invoked per property.
8082 <h3 id="_pickbyobject-predicate_identity"><code>_.pickBy(object, [predicate=_.identity])</code></h3>
8085 Creates an object composed of the `object` properties `predicate` returns
8086 truthy for. The predicate is invoked with two arguments: *(value, key)*.
8093 2. `[predicate=_.identity]` *(Function)*: The function invoked per property.
10151 function of the first predicate to return truthy. The predicate-function
10159 1. `pairs` *(Array)*: The predicate-function pairs.
10190 Creates a function that invokes the predicate properties of `source` with