Created
September 26, 2015 21:56
-
-
Save luijar/8eea50d13e7d41864a69 to your computer and use it in GitHub Desktop.
Avoid side effect with lenses
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var headLens = R.lensIndex(0); // point to first element in the array | |
R.view(headLens, people); //=> ana | |
var array2 = R.set(headLens, 'OLIVIA', firstnames); //=> ["OLIVIA", "LUIS", "CARLOS", "NESTOR", "MARIA"] | |
R.over(headLens, R.toLower, array2); //=> ["olivia", "LUIS", "CARLOS", "NESTOR", "MARIA"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment