Lines Matching refs:arrays

477 Creates a new array concatenating `array` with any additional arrays
510 Creates an array of `array` values not included in the other given arrays
1104 <h3 id="_intersectionarrays"><code>_.intersection([arrays])</code></h3>
1107 Creates an array of unique values that are included in all given arrays
1116 1. `[arrays]` *(...Array)*: The arrays to inspect.
1132 <h3 id="_intersectionbyarrays-iteratee_identity"><code>_.intersectionBy([arrays], [iteratee=_.ident…
1136 which is invoked for each element of each `arrays` to generate the criterion
1145 1. `[arrays]` *(...Array)*: The arrays to inspect.
1166 <h3 id="_intersectionwitharrays-comparator"><code>_.intersectionWith([arrays], [comparator])</code>…
1170 which is invoked to compare elements of `arrays`. The order and references
1178 1. `[arrays]` *(...Array)*: The arrays to inspect.
1568 [`Array#slice`](https://mdn.io/Array/slice) to ensure dense arrays are
1771 for sorted arrays.
1797 for sorted arrays.
2007 <h3 id="_unionarrays"><code>_.union([arrays])</code></h3>
2010 Creates an array of unique values, in order, from all given arrays using
2018 1. `[arrays]` *(...Array)*: The arrays to inspect.
2034 <h3 id="_unionbyarrays-iteratee_identity"><code>_.unionBy([arrays], [iteratee=_.identity])</code></…
2038 invoked for each element of each `arrays` to generate the criterion by
2047 1. `[arrays]` *(...Array)*: The arrays to inspect.
2068 <h3 id="_unionwitharrays-comparator"><code>_.unionWith([arrays], [comparator])</code></h3>
2072 is invoked to compare elements of `arrays`. Result values are chosen from
2080 1. `[arrays]` *(...Array)*: The arrays to inspect.
2286 <h3 id="_xorarrays"><code>_.xor([arrays])</code></h3>
2291 of the given arrays. The order of result values is determined by the order
2292 they occur in the arrays.
2298 1. `[arrays]` *(...Array)*: The arrays to inspect.
2314 <h3 id="_xorbyarrays-iteratee_identity"><code>_.xorBy([arrays], [iteratee=_.identity])</code></h3>
2318 invoked for each element of each `arrays` to generate the criterion by
2320 by the order they occur in the arrays. The iteratee is invoked with one
2327 1. `[arrays]` *(...Array)*: The arrays to inspect.
2348 <h3 id="_xorwitharrays-comparator"><code>_.xorWith([arrays], [comparator])</code></h3>
2352 invoked to compare elements of `arrays`. The order of result values is
2353 determined by the order they occur in the arrays. The comparator is invoked
2360 1. `[arrays]` *(...Array)*: The arrays to inspect.
2380 <h3 id="_ziparrays"><code>_.zip([arrays])</code></h3>
2384 first elements of the given arrays, the second of which contains the
2385 second elements of the given arrays, and so on.
2391 1. `[arrays]` *(...Array)*: The arrays to process.
2410 This method is like `_.fromPairs` except that it accepts two arrays,
2460 <h3 id="_zipwitharrays-iteratee_identity"><code>_.zipWith([arrays], [iteratee=_.identity])</code></…
2471 1. `[arrays]` *(...Array)*: The arrays to process.
2809 property are iterated like arrays. To avoid this behavior use `_.forIn`
4509 and supports cloning arrays, array buffers, booleans, date objects, maps,
4511 arrays. The own enumerable properties of `arguments` objects are cloned
5071 Array-like values such as `arguments` objects, arrays, buffers, strings, or
5114 **Note:** This method supports comparing arrays, array buffers, booleans,
5116 sets, strings, symbols, and typed arrays. `Object` objects are compared
5652 of `Object`. *(e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)*
8540 chain sequences. Methods that operate on and return arrays, collections,
8557 the creation of intermediate arrays and can greatly reduce the number of
11007 var arrays = _.times(2, _.stubArray);
11009 console.log(arrays);
11012 console.log(arrays[0] === arrays[1]);