map

v0.9.6arrow_drop_down
v0.9.6
STATUS
Passing
DOWNLOADS
28
VISIBILITY
Public
PUBLISHED
5 years ago
SIZE
2 KB
Takes a function and
1 contributor
Install map as a package?
Copied
npm i @bit/justin-capalbo.ramda.map
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.cloud
Component Example
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
import
any of the 1 million components
and packages in Bit or NPM to the example.
import Button from '@bit/grommet.grommet.button';
import Lodash from 'lodash';
toggle layout
No preview available
modifieddraft
chevron_left
chevron_right
map (
fn:Function,
list:Array
) : Array

Takes a function and a functor, applies the function to each of the functor’s values, and returns a functor of the same shape.

Ramda provides suitable map implementations for Array and Object, so this function may be applied to [1, 2, 3] or {x: 1, y: 2, z: 3}.

Dispatches to the map method of the second argument, if present.

Acts as a transducer if a transformer is given in list position.

Also treats functions as functors and will compose them together.

Example
const double = x => x * 2;

     R.map(double, [1, 2, 3]); //=> [2, 4, 6]

     R.map(double, {x: 1, y: 2, z: 3}); //=> {x: 2, y: 4, z: 6}
Arguments
fn: Function

The function to be called on every element of the input list.

list: Array

The list to be iterated over.

Returns
Array

The new list.

Help and resources