Lines Matching refs:result

277 * <a href="#_resultobject-path-defaultvalue">`_.result`</a>
512 for equality comparisons. The order and references of result values are
544 by which they're compared. The order and references of result values are
582 references of result values are determined by the first array. The comparator
1109 for equality comparisons. The order and references of result values are
1137 by which they're compared. The order and references of result values are
1171 of result values are determined by the first array. The comparator is
2106 is kept. The order of result values is determined by the order they occur
2134 uniqueness is computed. The order of result values is determined by the
2167 is invoked to compare elements of `array`. The order of result values is
2291 of the given arrays. The order of result values is determined by the order
2319 which by which they're compared. The order of result values is determined
2352 invoked to compare elements of `arrays`. The order of result values is
3164 Reduces `collection` to a value which is the accumulated result of running
3198 _.reduce({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) {
3199 (result[value] || (result[value] = [])).push(key);
3200 return result;
3587 calls to the created function return the result of the last `func` invocation.
3720 `func` returning its result, if at least `arity` number of arguments have
3829 calls to the debounced function return the result of the last `func`
3975 Creates a function that memoizes the result of `func`. If `resolver` is
3976 provided, it determines the cache key for storing the result based on the
4014 // Modify the result cache.
4031 Creates a function that negates the result of the predicate `func`. The
4346 result of the last `func` invocation.
5522 attempt to fix the detection will be obstructed. As a result, we're left
5687 and has a `typeof` result of "object".
5789 double precision number which isn't the result of a rounded unsafe integer.
7746 *(&#42;)*: Returns the result of the invoked method.
8111 <h3 id="_resultobject-path-defaultvalue"><code>_.result(object, path, [defaultValue])</code></h3>
8112 …L13623 "View in source") [&#x24C3;](https://www.npmjs.com/package/lodash.result "See the npm packa…
8116 its result is returned.
8133 _.result(object, 'a[0].b.c1');
8136 _.result(object, 'a[0].b.c2');
8139 _.result(object, 'a[0].b.c3', 'default');
8142 _.result(object, 'a[0].b.c3', _.constant('default'));
8305 `accumulator` object which is the result of running each of its own
8325 _.transform([2, 3, 4], function(result, n) {
8326 result.push(n *= n);
8331 _.transform({ 'a': 1, 'b': 2, 'c': 1 }, function(result, value, key) {
8332 (result[value] || (result[value] = [])).push(key);
8630 `repeat`, `result`, `round`, `runInContext`, `sample`, `shift`, `size`,
8676 chain sequences enabled. The result of such sequences must be unwrapped
8749 This method is like `_.tap` except that it returns the result of `interceptor`.
8761 *(&#42;)*: Returns the result of `interceptor`.
8873 Executes the chain sequence and returns the wrapped result.
10079 Attempts to invoke `func`, returning either the result or the caught error
10090 *(&#42;)*: Returns the `func` result or error object.
10287 Creates a function that returns the result of invoking the given functions