always


a → (* → a)

Parameters

  • valThe value to wrap in a function

Returns function A Function :: * -> val.

Added in v0.1.0

Returns a function that always returns the given value. Note that for non-primitives the value returned is a reference to the original value.

This function is known as const, constant, or K (for K combinator) in other languages and libraries.

  1. const t = R.always('Tee');
  2. t(); //=> 'Tee'

comparator


((a, b) → Boolean) → ((a, b) → Number)

Parameters

  • predA predicate function of arity two which will return true if the first argument is less than the second, false otherwise

Returns function A Function :: a -> b -> Int that returns `-1` if a < b, `1` if b < a, otherwise `0`

Added in v0.1.0

Makes a comparator function out of a function that reports whether the first element is less than the second.

  1. const byAge = R.comparator((a, b) => a.age < b.age);
  2. const people = [
  3. { name: 'Emma', age: 70 },
  4. { name: 'Peter', age: 78 },
  5. { name: 'Mikhail', age: 62 },
  6. ];
  7. const peopleByIncreasingAge = R.sort(byAge, people);
  8. //=> [{ name: 'Mikhail', age: 62 },{ name: 'Emma', age: 70 }, { name: 'Peter', age: 78 }]

compose


((y → z), (x → y), …, (o → p), ((a, b, …, n) → o)) → ((a, b, …, n) → z)

Parameters

  • …functionsThe functions to compose

Returns function

Added in v0.1.0

Performs right-to-left function composition. The last argument may have any arity; the remaining arguments must be unary.

Note: The result of compose is not automatically curried.

See also pipe.

  1. const classyGreeting = (firstName, lastName) => "The name's " + lastName + ", " + firstName + " " + lastName
  2. const yellGreeting = R.compose(R.toUpper, classyGreeting);
  3. yellGreeting('James', 'Bond'); //=> "THE NAME'S BOND, JAMES BOND"
  4. R.compose(Math.abs, R.add(1), R.multiply(2))(-4) //=> 7

construct


(* → {*}) → (* → {*})

Parameters

  • fnThe constructor function to wrap.

Returns function A wrapped, curried constructor function.

Added in v0.1.0

Wraps a constructor function inside a curried function that can be called with the same arguments and returns the same type.

See also invoker.

  1. // Constructor function
  2. function Animal(kind) {
  3. this.kind = kind;
  4. };
  5. Animal.prototype.sighting = function() {
  6. return "It's a " + this.kind + "!";
  7. }
  8. const AnimalConstructor = R.construct(Animal)
  9. // Notice we no longer need the 'new' keyword:
  10. AnimalConstructor('Pig'); //=> {"kind": "Pig", "sighting": function (){...}};
  11. const animalTypes = ["Lion", "Tiger", "Bear"];
  12. const animalSighting = R.invoker(0, 'sighting');
  13. const sightNewAnimal = R.compose(animalSighting, AnimalConstructor);
  14. R.map(sightNewAnimal, animalTypes); //=> ["It's a Lion!", "It's a Tiger!", "It's a Bear!"]

curry


(* → a) → (* → a)

Parameters

  • fnThe function to curry.

Returns function A new, curried function.

Added in v0.1.0

Returns a curried equivalent of the provided function. The curried function has two unusual capabilities. First, its arguments needn’t be provided one at a time. If f is a ternary function and g is R.curry(f), the following are equivalent:

  • g(1)(2)(3)
  • g(1)(2, 3)
  • g(1, 2)(3)
  • g(1, 2, 3)

Secondly, the special placeholder value R.__ may be used to specify “gaps”, allowing partial application of any combination of arguments, regardless of their positions. If g is as above and _ is R.__, the following are equivalent:

  • g(1, 2, 3)
  • g(_, 2, 3)(1)
  • g(_, _, 3)(1)(2)
  • g(_, _, 3)(1, 2)
  • g(_, 2)(1)(3)
  • g(_, 2)(1, 3)
  • g(_, 2)(_, 3)(1)

Please note that default parameters don’t count towards a function arity and therefore curry won’t work well with those.

See also curryN, partial.

  1. const addFourNumbers = (a, b, c, d) => a + b + c + d;
  2. const curriedAddFourNumbers = R.curry(addFourNumbers);
  3. const f = curriedAddFourNumbers(1, 2);
  4. const g = f(3);
  5. g(4); //=> 10
  6. // R.curry not working well with default parameters
  7. const h = R.curry((a, b, c = 2) => a + b + c);
  8. h(1)(2)(7); //=> Error! (`3` is not a function!)

useWith


((x1, x2, …) → z) → [(a → x1), (b → x2), …] → (a → b → … → z)

Parameters

  • fnThe function to wrap.
  • transformersA list of transformer functions

Returns function The wrapped function.

Added in v0.1.0

Accepts a function fn and a list of transformer functions and returns a new curried function. When the new function is invoked, it calls the function fn with parameters consisting of the result of calling each supplied handler on successive arguments to the new function.

If more arguments are passed to the returned function than transformer functions, those arguments are passed directly to fn as additional parameters. If you expect additional arguments that don’t need to be transformed, although you can ignore them, it’s best to pass an identity function so that the new function reports the correct arity.

See also converge.

  1. R.useWith(Math.pow, [R.identity, R.identity])(3, 4); //=> 81
  2. R.useWith(Math.pow, [R.identity, R.identity])(3)(4); //=> 81
  3. R.useWith(Math.pow, [R.dec, R.inc])(3, 4); //=> 32
  4. R.useWith(Math.pow, [R.dec, R.inc])(3)(4); //=> 32

flip


((a, b, c, …) → z) → (b → a → c → … → z)

Parameters

  • fnThe function to invoke with its first two parameters reversed.

Returns * The result of invoking fn with its first two parameters’ order reversed.

Added in v0.1.0

Returns a new function much like the supplied one, except that the first two arguments’ order is reversed.

  1. const mergeThree = (a, b, c) => [].concat(a, b, c);
  2. mergeThree(1, 2, 3); //=> [1, 2, 3]
  3. R.flip(mergeThree)(1, 2, 3); //=> [2, 1, 3]

groupBy


Idx a => (b → a) → [b] → {a: [b]}

Idx = String | Int | Symbol

Parameters

  • fnFunction :: a -> Idx
  • listThe array to group

Returns Object An object with the output of fn for keys, mapped to arrays of elements that produced that key when passed to fn.

Added in v0.1.0

Splits a list into sub-lists stored in an object, based on the result of calling a key-returning function on each element, and grouping the results according to values returned.

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

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

See also reduceBy, transduce, indexBy, collectBy.

  1. const byGrade = R.groupBy(function(student) {
  2. const score = student.score;
  3. return score < 65 ? 'F' :
  4. score < 70 ? 'D' :
  5. score < 80 ? 'C' :
  6. score < 90 ? 'B' : 'A';
  7. });
  8. const students = [{name: 'Abby', score: 84},
  9. {name: 'Eddy', score: 58},
  10. // ...
  11. {name: 'Jack', score: 69}];
  12. byGrade(students);
  13. // {
  14. // 'A': [{name: 'Dianne', score: 99}],
  15. // 'B': [{name: 'Abby', score: 84}]
  16. // // ...,
  17. // 'F': [{name: 'Eddy', score: 58}]
  18. // }

identity


a → a

Parameters

  • xThe value to return.

Returns * The input value, x.

Added in v0.1.0

A function that does nothing but return the parameter supplied to it. Good as a default or placeholder function.

  1. R.identity(1); //=> 1
  2. const obj = {};
  3. R.identity(obj) === obj; //=> true

invoker


Number → String → (a → b → … → n → Object → *)

Parameters

  • arityNumber of arguments the returned function should take before the target object.
  • methodName of any of the target object’s methods to call.

Returns function A new curried function.

Added in v0.1.0

Given an arity (Number) and a name (String) the invoker function returns a curried function that takes arity arguments and a context object. It will “invoke” the name‘d function (a method) on the context object.

See also construct.

  1. // A function with no arguments
  2. const asJson = invoker(0, "json")
  3. // Just like calling .then((response) => response.json())
  4. fetch("http://example.com/index.json").then(asJson)
  5. // A function with one argument
  6. const sliceFrom = invoker(1, 'slice');
  7. sliceFrom(6, 'abcdefghijklm'); //=> 'ghijklm'
  8. // A function with two arguments
  9. const sliceFrom6 = invoker(2, 'slice')(6);
  10. sliceFrom6(8, 'abcdefghijklm'); //=> 'gh'
  11. // NOTE: You can't simply pass some of the arguments to the initial invoker function.
  12. const firstCreditCardSection = invoker(2, "slice", 0, 4)
  13. firstCreditCardSection("4242 4242 4242 4242") // => Function<...>
  14. // Since invoker returns a curried function, you may partially apply it to create the function you need.
  15. const firstCreditCardSection = invoker(2, "slice")(0, 4)
  16. firstCreditCardSection("4242 4242 4242 4242") // => "4242"

nAry


Number → (* → a) → (* → a)

Parameters

  • nThe desired arity of the new function.
  • fnThe function to wrap.

Returns function A new function wrapping fn. The new function is guaranteed to be of arity n.

Added in v0.1.0

Wraps a function of any arity (including nullary) in a function that accepts exactly n parameters. Any extraneous parameters will not be passed to the supplied function.

See also binary, unary.

  1. const takesTwoArgs = (a, b) => [a, b];
  2. takesTwoArgs.length; //=> 2
  3. takesTwoArgs(1, 2); //=> [1, 2]
  4. const takesOneArg = R.nAry(1, takesTwoArgs);
  5. takesOneArg.length; //=> 1
  6. // Only `n` arguments are passed to the wrapped function
  7. takesOneArg(1, 2); //=> [1, undefined]

once


(a… → b) → (a… → b)

Parameters

  • fnThe function to wrap in a call-only-once wrapper.

Returns function The wrapped function.

Added in v0.1.0

Accepts a function fn and returns a function that guards invocation of fn such that fn can only ever be called once, no matter how many times the returned function is invoked. The first value calculated is returned in subsequent invocations.

  1. const addOneOnce = R.once(x => x + 1);
  2. addOneOnce(10); //=> 11
  3. addOneOnce(addOneOnce(50)); //=> 11

pipe


(((a, b, …, n) → o), (o → p), …, (x → y), (y → z)) → ((a, b, …, n) → z)

Parameters

  • functions

Returns function

Added in v0.1.0

Performs left-to-right function composition. The first argument may have any arity; the remaining arguments must be unary.

In some libraries this function is named sequence.

Note: The result of pipe is not automatically curried.

See also compose.

  1. const f = R.pipe(Math.pow, R.negate, R.inc);
  2. f(3, 4); // -(3^4) + 1

tap


(a → *) → a → a

Parameters

  • fnThe function to call with x. The return value of fn will be thrown away.
  • x

Returns * x.

Added in v0.1.0

Runs the given function with the supplied object, then returns the object.

Acts as a transducer if a transformer is given as second parameter.

  1. const sayX = x => console.log('x is ' + x);
  2. R.tap(sayX, 100); //=> 100
  3. // logs 'x is 100'

binary


(a → b → c → … → z) → ((a, b) → z)

Parameters

  • fnThe function to wrap.

Returns function A new function wrapping fn. The new function is guaranteed to be of arity 2.

Added in v0.2.0

Wraps a function of any arity (including nullary) in a function that accepts exactly 2 parameters. Any extraneous parameters will not be passed to the supplied function.

See also nAry, unary.

  1. const takesThreeArgs = function(a, b, c) {
  2. return [a, b, c];
  3. };
  4. takesThreeArgs.length; //=> 3
  5. takesThreeArgs(1, 2, 3); //=> [1, 2, 3]
  6. const takesTwoArgs = R.binary(takesThreeArgs);
  7. takesTwoArgs.length; //=> 2
  8. // Only 2 arguments are passed to the wrapped function
  9. takesTwoArgs(1, 2, 3); //=> [1, 2, undefined]

unary


(a → b → c → … → z) → (a → z)

Parameters

  • fnThe function to wrap.

Returns function A new function wrapping fn. The new function is guaranteed to be of arity 1.

Added in v0.2.0

Wraps a function of any arity (including nullary) in a function that accepts exactly 1 parameter. Any extraneous parameters will not be passed to the supplied function.

See also binary, nAry.

  1. const takesTwoArgs = function(a, b) {
  2. return [a, b];
  3. };
  4. takesTwoArgs.length; //=> 2
  5. takesTwoArgs(1, 2); //=> [1, 2]
  6. const takesOneArg = R.unary(takesTwoArgs);
  7. takesOneArg.length; //=> 1
  8. // Only 1 argument is passed to the wrapped function
  9. takesOneArg(1, 2); //=> [1, undefined]

ap


[a → b] → [a] → [b]

Apply f => f (a → b) → f a → f b

(r → a → b) → (r → a) → (r → b)

Added in v0.3.0

ap applies a list of functions to a list of values.

Dispatches to the ap method of the first argument, if present. Also treats curried functions as applicatives.

  1. R.ap([R.multiply(2), R.add(3)], [1,2,3]); //=> [2, 4, 6, 4, 5, 6]
  2. R.ap([R.concat('tasty '), R.toUpper], ['pizza', 'salad']); //=> ["tasty pizza", "tasty salad", "PIZZA", "SALAD"]
  3. // R.ap can also be used as S combinator
  4. // when only two functions are passed
  5. R.ap(R.concat, R.toUpper)('Ramda') //=> 'RamdaRAMDA'

empty


a → a

Added in v0.3.0

Returns the empty value of its argument’s type. Ramda defines the empty value of Array ([]), Object ({}), String (''), TypedArray (Uint8Array [], Float32Array [], etc), and Arguments. Other types are supported if they define <Type>.empty, <Type>.prototype.empty or implement the FantasyLand Monoid spec.

Dispatches to the empty method of the first argument, if present.

  1. R.empty(Just(42)); //=> Nothing()
  2. R.empty([1, 2, 3]); //=> []
  3. R.empty('unicorns'); //=> ''
  4. R.empty({x: 1, y: 2}); //=> {}
  5. R.empty(Uint8Array.from('123')); //=> Uint8Array []

of


(* → {*}) → a → {a}

Parameters

  • CtorA constructor
  • valany value

Returns * An instance of the Ctor wrapping val.

Added in v0.3.0

  1. R.of(Array, 42); //=> [42]
  2. R.of(Array, [42]); //=> [[42]]
  3. R.of(Maybe, 42); //=> Maybe.Just(42)