Lines Matching refs:map

95 * <a href="#_mapcollection-iteratee_identity">`_.map`</a>
3021 <h3 id="_mapcollection-iteratee_identity"><code>_.map(collection, [iteratee=_.identity])</code></h3>
3022 …js#L9552 "View in source") [&#x24C3;](https://www.npmjs.com/package/lodash.map "See the npm packag…
3030 `_.every`, `_.filter`, `_.map`, `_.mapValues`, `_.reject`, and `_.some`.
3055 _.map([4, 8], square);
3058 _.map({ 'a': 4, 'b': 8 }, square);
3067 _.map(users, 'user');
3573 _.map(['6', '8', '10'], _.ary(parseInt, 1));
3978 provided to the memoized function is used as the map cache key. The `func`
3985 [`Map`](http://ecma-international.org/ecma-262/7.0/#sec-properties-of-the-map-prototype-object)
4409 _.map(['6', '8', '10'], _.unary(parseInt));
5064 Checks if `value` is an empty object, collection, map, or set.
5373 *(boolean)*: Returns `true` if `value` is a map, else `false`.
5976 *(boolean)*: Returns `true` if `value` is a weak map, else `false`.
8231 which can be consumed by `_.fromPairs`. If `object` is a map or set, its
8268 for `object` which can be consumed by `_.fromPairs`. If `object` is a map
8581 `findLast`, `head`, `initial`, `last`, `map`, `reject`, `reverse`, `slice`,
8596 `keys`, `keysIn`, `map`, `mapKeys`, `mapValues`, `matches`, `matchesProperty`,
8658 var squares = wrapped.map(square);
8699 .map(function(o) {
8956 var wrapped = _([1, 2]).map(square);
9438 _.map(['6', '08', '10'], _.parseInt);
9836 _.map([' foo ', ' bar '], _.trim);
10408 _.map(users, _.iteratee('user'));
10529 _.map(objects, _.method('a.b'));
10532 _.map(objects, _.method(['a', 'b']));
10563 _.map(['a[2]', 'c[0]'], _.methodOf(object));
10566 _.map([['a', '2'], ['c', '0']], _.methodOf(object));
10812 _.map(objects, _.property('a.b'));
10815 _.map(_.sortBy(objects, _.property(['a', 'b'])), 'a.b');
10844 _.map(['a[2]', 'c[0]'], _.propertyOf(object));
10847 _.map([['a', '2'], ['c', '0']], _.propertyOf(object));