|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- /**
- * ```ts
- * interface IO<A> {
- * (): A
- * }
- * ```
- *
- * `IO<A>` represents a non-deterministic synchronous computation that can cause side effects, yields a value of
- * type `A` and **never fails**.
- *
- * If you want to represent a synchronous computation that may fail, please see `IOEither`.
- * If you want to represent a synchronous computation that may yield nothing, please see `IOOption`.
- *
- * @since 2.0.0
- */
- import { getApplicativeMonoid } from './Applicative';
- import { apFirst as apFirst_, apS as apS_, apSecond as apSecond_, getApplySemigroup } from './Apply';
- import { bind as bind_, chainFirst as chainFirst_ } from './Chain';
- import { constant, identity } from './function';
- import { let as let__, bindTo as bindTo_, flap as flap_ } from './Functor';
- import * as _ from './internal';
- var _map = function (ma, f) { return function () { return f(ma()); }; };
- var _ap = function (mab, ma) { return function () { return mab()(ma()); }; };
- var _chain = function (ma, f) { return function () { return f(ma())(); }; };
- var _chainRec = function (a, f) { return function () {
- var e = f(a)();
- while (e._tag === 'Left') {
- e = f(e.left)();
- }
- return e.right;
- }; };
- /**
- * `map` can be used to turn functions `(a: A) => B` into functions `(fa: F<A>) => F<B>` whose argument and return types
- * use the type constructor `F` to represent some computational context.
- *
- * @category mapping
- * @since 2.0.0
- */
- export var map = function (f) { return function (fa) { return _map(fa, f); }; };
- /**
- * @since 2.0.0
- */
- export var ap = function (fa) { return function (fab) { return _ap(fab, fa); }; };
- /**
- * @category constructors
- * @since 2.0.0
- */
- export var of = constant;
- /**
- * Composes computations in sequence, using the return value of one computation to determine the next computation.
- *
- * @category sequencing
- * @since 2.0.0
- */
- export var chain = function (f) { return function (ma) { return _chain(ma, f); }; };
- /**
- * @category sequencing
- * @since 2.0.0
- */
- export var flatten = /*#__PURE__*/ chain(identity);
- /**
- * @category type lambdas
- * @since 2.0.0
- */
- export var URI = 'IO';
- /**
- * @category instances
- * @since 2.7.0
- */
- export var Functor = {
- URI: URI,
- map: _map
- };
- /**
- * @category mapping
- * @since 2.10.0
- */
- export var flap = /*#__PURE__*/ flap_(Functor);
- /**
- * @category instances
- * @since 2.10.0
- */
- export var Pointed = {
- URI: URI,
- of: of
- };
- /**
- * @category instances
- * @since 2.10.0
- */
- export var Apply = {
- URI: URI,
- map: _map,
- ap: _ap
- };
- /**
- * Combine two effectful actions, keeping only the result of the first.
- *
- * @since 2.0.0
- */
- export var apFirst = /*#__PURE__*/ apFirst_(Apply);
- /**
- * Combine two effectful actions, keeping only the result of the second.
- *
- * @since 2.0.0
- */
- export var apSecond = /*#__PURE__*/ apSecond_(Apply);
- /**
- * @category instances
- * @since 2.7.0
- */
- export var Applicative = {
- URI: URI,
- map: _map,
- ap: _ap,
- of: of
- };
- /**
- * @category instances
- * @since 2.10.0
- */
- export var Chain = {
- URI: URI,
- map: _map,
- ap: _ap,
- chain: _chain
- };
- /**
- * @category instances
- * @since 2.7.0
- */
- export var Monad = {
- URI: URI,
- map: _map,
- ap: _ap,
- of: of,
- chain: _chain
- };
- /**
- * Composes computations in sequence, using the return value of one computation to determine the next computation and
- * keeping only the result of the first.
- *
- * @category sequencing
- * @since 2.0.0
- */
- export var chainFirst = /*#__PURE__*/ chainFirst_(Chain);
- /**
- * @category zone of death
- * @since 2.7.0
- * @deprecated
- */
- export var fromIO = identity;
- /**
- * @category instances
- * @since 2.7.0
- */
- export var MonadIO = {
- URI: URI,
- map: _map,
- ap: _ap,
- of: of,
- chain: _chain,
- fromIO: fromIO
- };
- /**
- * @category instances
- * @since 2.7.0
- */
- export var ChainRec = {
- URI: URI,
- map: _map,
- ap: _ap,
- chain: _chain,
- chainRec: _chainRec
- };
- /**
- * @category instances
- * @since 2.10.0
- */
- export var FromIO = {
- URI: URI,
- fromIO: identity
- };
- // -------------------------------------------------------------------------------------
- // do notation
- // -------------------------------------------------------------------------------------
- /**
- * @category do notation
- * @since 2.9.0
- */
- export var Do = /*#__PURE__*/ of(_.emptyRecord);
- /**
- * @category do notation
- * @since 2.8.0
- */
- export var bindTo = /*#__PURE__*/ bindTo_(Functor);
- var let_ = /*#__PURE__*/ let__(Functor);
- export {
- /**
- * @category do notation
- * @since 2.13.0
- */
- let_ as let };
- /**
- * @category do notation
- * @since 2.8.0
- */
- export var bind = /*#__PURE__*/ bind_(Chain);
- /**
- * @category do notation
- * @since 2.8.0
- */
- export var apS = /*#__PURE__*/ apS_(Apply);
- /**
- * @since 2.11.0
- */
- export var ApT = /*#__PURE__*/ of(_.emptyReadonlyArray);
- // -------------------------------------------------------------------------------------
- // array utils
- // -------------------------------------------------------------------------------------
- /**
- * Equivalent to `ReadonlyNonEmptyArray#traverseWithIndex(Applicative)`.
- *
- * @category traversing
- * @since 2.11.0
- */
- export var traverseReadonlyNonEmptyArrayWithIndex = function (f) {
- return function (as) {
- return function () {
- var out = [f(0, _.head(as))()];
- for (var i = 1; i < as.length; i++) {
- out.push(f(i, as[i])());
- }
- return out;
- };
- };
- };
- /**
- * Equivalent to `ReadonlyArray#traverseWithIndex(Applicative)`.
- *
- * @category traversing
- * @since 2.11.0
- */
- export var traverseReadonlyArrayWithIndex = function (f) {
- var g = traverseReadonlyNonEmptyArrayWithIndex(f);
- return function (as) { return (_.isNonEmpty(as) ? g(as) : ApT); };
- };
- /**
- * Equivalent to `ReadonlyArray#traverseWithIndex(Applicative)`.
- *
- * @category traversing
- * @since 2.9.0
- */
- export var traverseArrayWithIndex = traverseReadonlyArrayWithIndex;
- /**
- * Equivalent to `ReadonlyArray#traverse(Applicative)`.
- *
- * @category traversing
- * @since 2.9.0
- */
- export var traverseArray = function (f) {
- return traverseReadonlyArrayWithIndex(function (_, a) { return f(a); });
- };
- /**
- * Equivalent to `ReadonlyArray#sequence(Applicative)`.
- *
- * @category traversing
- * @since 2.9.0
- */
- export var sequenceArray =
- /*#__PURE__*/ traverseArray(identity);
- // -------------------------------------------------------------------------------------
- // deprecated
- // -------------------------------------------------------------------------------------
- /**
- * This instance is deprecated, use small, specific instances instead.
- * For example if a function needs a `Functor` instance, pass `IO.Functor` instead of `IO.io`
- * (where `IO` is from `import IO from 'fp-ts/IO'`)
- *
- * @category zone of death
- * @since 2.0.0
- * @deprecated
- */
- export var io = {
- URI: URI,
- map: _map,
- of: of,
- ap: _ap,
- chain: _chain,
- fromIO: fromIO,
- chainRec: _chainRec
- };
- /**
- * Use [`getApplySemigroup`](./Apply.ts.html#getapplysemigroup) instead.
- *
- * @category zone of death
- * @since 2.0.0
- * @deprecated
- */
- export var getSemigroup = /*#__PURE__*/ getApplySemigroup(Apply);
- /**
- * Use [`getApplicativeMonoid`](./Applicative.ts.html#getapplicativemonoid) instead.
- *
- * @category zone of death
- * @since 2.0.0
- * @deprecated
- */
- export var getMonoid = /*#__PURE__*/ getApplicativeMonoid(Applicative);
|