Lines Matching refs:pairs

983    * of key-value pairs for `object` corresponding to the property names of `props`.
988 * @returns {Object} Returns the key-value pairs.
1172 * Converts `map` to its key-value pairs.
1176 * @returns {Array} Returns the key-value pairs.
1245 * Converts `set` to its value-value pairs.
1249 * @returns {Array} Returns the value-value pairs.
1902 * @param {Array} [entries] The key-value pairs to cache.
2006 * @param {Array} [entries] The key-value pairs to cache.
2119 * Creates a map cache object to store key-value pairs.
2123 * @param {Array} [entries] The key-value pairs to cache.
2274 * Creates a stack cache object to store key-value pairs.
2278 * @param {Array} [entries] The key-value pairs to cache.
2353 var pairs = data.__data__;
2354 if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) {
2355 pairs.push([key, value]);
2359 data = this.__data__ = new MapCache(pairs);
2480 * Gets the index at which the `key` is found in `array` of key-value pairs.
5448 * @returns {Function} Returns the new pairs function.
7380 * from key-value `pairs`.
7386 * @param {Array} pairs The key-value pairs.
7393 function fromPairs(pairs) {
7395 length = pairs == null ? 0 : pairs.length,
7399 var pair = pairs[index];
13707 * Creates an array of own enumerable string keyed-value pairs for `object`
13717 * @returns {Array} Returns the key-value pairs.
13733 * Creates an array of own and inherited enumerable string keyed-value pairs
13743 * @returns {Array} Returns the key-value pairs.
15295 * Creates a function that iterates over `pairs` and invokes the corresponding
15297 * pairs are invoked with the `this` binding and arguments of the created
15304 * @param {Array} pairs The predicate-function pairs.
15323 function cond(pairs) {
15324 var length = pairs == null ? 0 : pairs.length,
15327 pairs = !length ? [] : arrayMap(pairs, function(pair) {
15337 var pair = pairs[index];