mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-10 10:57:49 +00:00
Links to creation equivalents for in-place modification functions. (#2468)
See issue #2467
This commit is contained in:
committed by
John-David Dalton
parent
9bc8519656
commit
4fb4ec5328
12
lodash.js
12
lodash.js
@@ -6392,6 +6392,8 @@
|
|||||||
* for equality comparisons. The order of result values is determined by the
|
* for equality comparisons. The order of result values is determined by the
|
||||||
* order they occur in the first array.
|
* order they occur in the first array.
|
||||||
*
|
*
|
||||||
|
* **Note:** Unlike `_.pullAll`, this method returns a new array.
|
||||||
|
*
|
||||||
* @static
|
* @static
|
||||||
* @memberOf _
|
* @memberOf _
|
||||||
* @since 0.1.0
|
* @since 0.1.0
|
||||||
@@ -6417,6 +6419,8 @@
|
|||||||
* by which they're compared. Result values are chosen from the first array.
|
* by which they're compared. Result values are chosen from the first array.
|
||||||
* The iteratee is invoked with one argument: (value).
|
* The iteratee is invoked with one argument: (value).
|
||||||
*
|
*
|
||||||
|
* **Note:** Unlike `_.pullAllBy`, this method returns a new array.
|
||||||
|
*
|
||||||
* @static
|
* @static
|
||||||
* @memberOf _
|
* @memberOf _
|
||||||
* @since 4.0.0
|
* @since 4.0.0
|
||||||
@@ -6450,6 +6454,8 @@
|
|||||||
* are chosen from the first array. The comparator is invoked with two arguments:
|
* are chosen from the first array. The comparator is invoked with two arguments:
|
||||||
* (arrVal, othVal).
|
* (arrVal, othVal).
|
||||||
*
|
*
|
||||||
|
* **Note:** Unlike `_.pullAllWith`, this method returns a new array.
|
||||||
|
*
|
||||||
* @static
|
* @static
|
||||||
* @memberOf _
|
* @memberOf _
|
||||||
* @since 4.0.0
|
* @since 4.0.0
|
||||||
@@ -7996,6 +8002,8 @@
|
|||||||
* Creates an array excluding all given values using
|
* Creates an array excluding all given values using
|
||||||
* [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero)
|
* [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero)
|
||||||
* for equality comparisons.
|
* for equality comparisons.
|
||||||
|
*
|
||||||
|
* **Note:** Unlike `_.pull`, this method returns a new array.
|
||||||
*
|
*
|
||||||
* @static
|
* @static
|
||||||
* @memberOf _
|
* @memberOf _
|
||||||
@@ -8608,6 +8616,8 @@
|
|||||||
* `predicate` returns truthy for. The predicate is invoked with three
|
* `predicate` returns truthy for. The predicate is invoked with three
|
||||||
* arguments: (value, index|key, collection).
|
* arguments: (value, index|key, collection).
|
||||||
*
|
*
|
||||||
|
* **Note:** Unlike `_.remove`, this method returns a new collection.
|
||||||
|
*
|
||||||
* @static
|
* @static
|
||||||
* @memberOf _
|
* @memberOf _
|
||||||
* @since 0.1.0
|
* @since 0.1.0
|
||||||
@@ -12215,6 +12225,8 @@
|
|||||||
/**
|
/**
|
||||||
* Creates an array of values corresponding to `paths` of `object`.
|
* Creates an array of values corresponding to `paths` of `object`.
|
||||||
*
|
*
|
||||||
|
* **Note:** Unlike `_.pullAt`, this method returns a new object.
|
||||||
|
*
|
||||||
* @static
|
* @static
|
||||||
* @memberOf _
|
* @memberOf _
|
||||||
* @since 1.0.0
|
* @since 1.0.0
|
||||||
|
|||||||
Reference in New Issue
Block a user