UNPKG

fp-ts

Version:

Functional programming in TypeScript

228 lines (227 loc) 8.21 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.pipe = void 0; exports.map = map; exports.contramap = contramap; exports.mapWithIndex = mapWithIndex; exports.ap = ap; exports.chain = chain; exports.bimap = bimap; exports.mapLeft = mapLeft; exports.extend = extend; exports.reduce = reduce; exports.foldMap = foldMap; exports.reduceRight = reduceRight; exports.reduceWithIndex = reduceWithIndex; exports.foldMapWithIndex = foldMapWithIndex; exports.reduceRightWithIndex = reduceRightWithIndex; exports.alt = alt; exports.filter = filter; exports.filterMap = filterMap; exports.partition = partition; exports.partitionMap = partitionMap; exports.filterWithIndex = filterWithIndex; exports.filterMapWithIndex = filterMapWithIndex; exports.partitionWithIndex = partitionWithIndex; exports.partitionMapWithIndex = partitionMapWithIndex; exports.promap = promap; exports.compose = compose; exports.pipeable = pipeable; var Apply_1 = require("./Apply"); var Chain_1 = require("./Chain"); var function_1 = require("./function"); function map(F) { return function (f) { return function (fa) { return F.map(fa, f); }; }; } function contramap(F) { return function (f) { return function (fa) { return F.contramap(fa, f); }; }; } function mapWithIndex(F) { return function (f) { return function (fa) { return F.mapWithIndex(fa, f); }; }; } function ap(F) { return function (fa) { return function (fab) { return F.ap(fab, fa); }; }; } function chain(F) { return function (f) { return function (fa) { return F.chain(fa, f); }; }; } function bimap(F) { return function (f, g) { return function (fea) { return F.bimap(fea, f, g); }; }; } function mapLeft(F) { return function (f) { return function (fea) { return F.mapLeft(fea, f); }; }; } function extend(F) { return function (f) { return function (wa) { return F.extend(wa, f); }; }; } function reduce(F) { return function (b, f) { return function (fa) { return F.reduce(fa, b, f); }; }; } function foldMap(F) { return function (M) { var foldMapM = F.foldMap(M); return function (f) { return function (fa) { return foldMapM(fa, f); }; }; }; } function reduceRight(F) { return function (b, f) { return function (fa) { return F.reduceRight(fa, b, f); }; }; } function reduceWithIndex(F) { return function (b, f) { return function (fa) { return F.reduceWithIndex(fa, b, f); }; }; } function foldMapWithIndex(F) { return function (M) { var foldMapWithIndexM = F.foldMapWithIndex(M); return function (f) { return function (fa) { return foldMapWithIndexM(fa, f); }; }; }; } function reduceRightWithIndex(F) { return function (b, f) { return function (fa) { return F.reduceRightWithIndex(fa, b, f); }; }; } function alt(F) { return function (that) { return function (fa) { return F.alt(fa, that); }; }; } function filter(F) { return function (predicate) { return function (fa) { return F.filter(fa, predicate); }; }; } function filterMap(F) { return function (f) { return function (fa) { return F.filterMap(fa, f); }; }; } function partition(F) { return function (f) { return function (fa) { return F.partition(fa, f); }; }; } function partitionMap(F) { return function (f) { return function (fa) { return F.partitionMap(fa, f); }; }; } function filterWithIndex(F) { return function (predicate) { return function (fa) { return F.filterWithIndex(fa, predicate); }; }; } function filterMapWithIndex(F) { return function (f) { return function (fa) { return F.filterMapWithIndex(fa, f); }; }; } function partitionWithIndex(F) { return function (f) { return function (fa) { return F.partitionWithIndex(fa, f); }; }; } function partitionMapWithIndex(F) { return function (f) { return function (fa) { return F.partitionMapWithIndex(fa, f); }; }; } function promap(F) { return function (f, g) { return function (fbc) { return F.promap(fbc, f, g); }; }; } function compose(F) { return function (ea) { return function (ab) { return F.compose(ab, ea); }; }; } var isFunctor = function (I) { return typeof I.map === 'function'; }; var isContravariant = function (I) { return typeof I.contramap === 'function'; }; var isFunctorWithIndex = function (I) { return typeof I.mapWithIndex === 'function'; }; var isApply = function (I) { return typeof I.ap === 'function'; }; var isChain = function (I) { return typeof I.chain === 'function'; }; var isBifunctor = function (I) { return typeof I.bimap === 'function'; }; var isExtend = function (I) { return typeof I.extend === 'function'; }; var isFoldable = function (I) { return typeof I.reduce === 'function'; }; var isFoldableWithIndex = function (I) { return typeof I.reduceWithIndex === 'function'; }; var isAlt = function (I) { return typeof I.alt === 'function'; }; var isCompactable = function (I) { return typeof I.compact === 'function'; }; var isFilterable = function (I) { return typeof I.filter === 'function'; }; var isFilterableWithIndex = function (I) { return typeof I.filterWithIndex === 'function'; }; var isProfunctor = function (I) { return typeof I.promap === 'function'; }; var isSemigroupoid = function (I) { return typeof I.compose === 'function'; }; var isMonadThrow = function (I) { return typeof I.throwError === 'function'; }; /** @deprecated */ function pipeable(I) { var r = {}; if (isFunctor(I)) { r.map = map(I); } if (isContravariant(I)) { r.contramap = contramap(I); } if (isFunctorWithIndex(I)) { r.mapWithIndex = mapWithIndex(I); } if (isApply(I)) { r.ap = ap(I); r.apFirst = (0, Apply_1.apFirst)(I); r.apSecond = (0, Apply_1.apSecond)(I); } if (isChain(I)) { r.chain = chain(I); r.chainFirst = (0, Chain_1.chainFirst)(I); r.flatten = r.chain(function_1.identity); } if (isBifunctor(I)) { r.bimap = bimap(I); r.mapLeft = mapLeft(I); } if (isExtend(I)) { r.extend = extend(I); r.duplicate = r.extend(function_1.identity); } if (isFoldable(I)) { r.reduce = reduce(I); r.foldMap = foldMap(I); r.reduceRight = reduceRight(I); } if (isFoldableWithIndex(I)) { r.reduceWithIndex = reduceWithIndex(I); r.foldMapWithIndex = foldMapWithIndex(I); r.reduceRightWithIndex = reduceRightWithIndex(I); } if (isAlt(I)) { r.alt = alt(I); } if (isCompactable(I)) { r.compact = I.compact; r.separate = I.separate; } if (isFilterable(I)) { r.filter = filter(I); r.filterMap = filterMap(I); r.partition = partition(I); r.partitionMap = partitionMap(I); } if (isFilterableWithIndex(I)) { r.filterWithIndex = filterWithIndex(I); r.filterMapWithIndex = filterMapWithIndex(I); r.partitionWithIndex = partitionWithIndex(I); r.partitionMapWithIndex = partitionMapWithIndex(I); } if (isProfunctor(I)) { r.promap = promap(I); } if (isSemigroupoid(I)) { r.compose = compose(I); } if (isMonadThrow(I)) { var fromOption = function (onNone) { return function (ma) { return ma._tag === 'None' ? I.throwError(onNone()) : I.of(ma.value); }; }; var fromEither = function (ma) { return ma._tag === 'Left' ? I.throwError(ma.left) : I.of(ma.right); }; var fromPredicate = function (predicate, onFalse) { return function (a) { return predicate(a) ? I.of(a) : I.throwError(onFalse(a)); }; }; var filterOrElse = function (predicate, onFalse) { return function (ma) { return I.chain(ma, function (a) { return (predicate(a) ? I.of(a) : I.throwError(onFalse(a))); }); }; }; r.fromOption = fromOption; r.fromEither = fromEither; r.fromPredicate = fromPredicate; r.filterOrElse = filterOrElse; } return r; } /** * Use [`pipe`](https://gcanti.github.io/fp-ts/modules/function.ts.html#pipe) from `function` module instead. * * @since 2.0.0 * @deprecated */ exports.pipe = function_1.pipe;