How to use the fantasy-land.traverse function in fantasy-land

To help you get started, we’ve selected a few fantasy-land examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github sanctuary-js / sanctuary / test / internal / Identity.js View on Github external
return Identity (f (this.value));
};

Identity.prototype[FL.ap] = function(other) {
  return map (other.value) (this);
};

Identity.prototype[FL.chain] = function(f) {
  return f (this.value);
};

Identity.prototype[FL.reduce] = function(f, x) {
  return f (x, this.value);
};

Identity.prototype[FL.traverse] = function(typeRep, f) {
  return map (Identity) (f (this.value));
};

Identity.prototype[FL.extend] = function(f) {
  return Identity (f (this));
};

Identity.prototype[FL.extract] = function() {
  return this.value;
};

Identity.prototype.inspect =
Identity.prototype['@@show'] = function() {
  return 'Identity (' + show (this.value) + ')';
};
github sanctuary-js / sanctuary / test / internal / List.js View on Github external
List.prototype[FL.chain] = function(f) {
  return this.isNil ?
    Nil :
    Z.concat (f (this.head), Z.chain (f, this.tail));
};

List.prototype[FL.alt] = List.prototype[FL.concat];

List.prototype[FL.reduce] = function(f, x) {
  return this.isNil ?
    x :
    Z.reduce (f, f (x, this.head), this.tail);
};

List.prototype[FL.traverse] = function(typeRep, f) {
  return this.isNil ?
    Z.of (typeRep, Nil) :
    Z.ap (Z.map (Cons, f (this.head)), Z.traverse (typeRep, f, this.tail));
};

List.prototype.inspect =
List.prototype['@@show'] = function() {
  return this.isNil ?
    'Nil' :
    'Cons (' + show (this.head) + ') (' + show (this.tail) + ')';
};

module.exports = List;
github sanctuary-js / sanctuary-type-classes / test / Identity.js View on Github external
return Identity (f (this.value));
};

Identity.prototype[FL.ap] = function(other) {
  return Z.map (other.value, this);
};

Identity.prototype[FL.chain] = function(f) {
  return f (this.value);
};

Identity.prototype[FL.reduce] = function(f, x) {
  return f (x, this.value);
};

Identity.prototype[FL.traverse] = function(typeRep, f) {
  return Z.map (Identity, f (this.value));
};

Identity.prototype[FL.extend] = function(f) {
  return Identity (f (this));
};

Identity.prototype[FL.extract] = function() {
  return this.value;
};

Identity.prototype.inspect =
Identity.prototype['@@show'] = function() {
  return 'Identity (' + show (this.value) + ')';
};
github sanctuary-js / sanctuary-type-classes / test / List.js View on Github external
List.prototype[FL.chain] = function(f) {
  return this.isNil ?
    Nil :
    Z.concat (f (this.head), Z.chain (f, this.tail));
};

List.prototype[FL.alt] = List.prototype[FL.concat];

List.prototype[FL.reduce] = function(f, x) {
  return this.isNil ?
    x :
    Z.reduce (f, f (x, this.head), this.tail);
};

List.prototype[FL.traverse] = function(typeRep, f) {
  return this.isNil ?
    Z.of (typeRep, Nil) :
    Z.ap (Z.map (curry2 (Cons), f (this.head)),
          Z.traverse (typeRep, f, this.tail));
};

List.prototype.inspect =
List.prototype['@@show'] = function() {
  return this.isNil ?
    'Nil' :
    'Cons (' + show (this.head) + ', ' + show (this.tail) + ')';
};

module.exports = List;
github fantasyland / static-land / src / fromFLType.js View on Github external
const traverse = (Inner, f, ti) => {
  const Adapter = fromSL(Inner)
  return ti[$.traverse](x => new Adapter(f(x)), Adapter[$.of]).unwrap()
}
github fantasyland / static-land / src / fromFLType.js View on Github external
function defAvailableMethods(Constructor) {
  const result = []
  if (Constructor[$.of]) result.push('of')
  if (Constructor[$.empty]) result.push('empty')
  if (Constructor[$.chainRec]) result.push('chainRec')
  if (Constructor[$.zero]) result.push('zero')
  if (Constructor.prototype[$.equals]) result.push('equals')
  if (Constructor.prototype[$.map]) result.push('map')
  if (Constructor.prototype[$.bimap]) result.push('bimap')
  if (Constructor.prototype[$.promap]) result.push('promap')
  if (Constructor.prototype[$.concat]) result.push('concat')
  if (Constructor.prototype[$.ap]) result.push('ap')
  if (Constructor.prototype[$.alt]) result.push('alt')
  if (Constructor.prototype[$.reduce]) result.push('reduce')
  if (Constructor.prototype[$.traverse]) result.push('traverse')
  if (Constructor.prototype[$.chain]) result.push('chain')
  if (Constructor.prototype[$.extend]) result.push('extend')
  if (Constructor.prototype[$.extract]) result.push('extract')
  return result
}