|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387 |
- import { apFirst as apFirst_, apS as apS_, apSecond as apSecond_ } from './Apply';
- import { bind as bind_, chainFirst as chainFirst_ } from './Chain';
- import { chainFirstIOK as chainFirstIOK_, chainIOK as chainIOK_, fromIOK as fromIOK_ } from './FromIO';
- import { ask as ask_, asks as asks_, chainFirstReaderK as chainFirstReaderK_, chainReaderK as chainReaderK_, fromReaderK as fromReaderK_ } from './FromReader';
- import { flow, identity, pipe, SK } from './function';
- import { bindTo as bindTo_, flap as flap_ } from './Functor';
- import * as _ from './internal';
- import * as I from './IO';
- import * as R from './Reader';
- import * as RT from './ReaderT';
- // -------------------------------------------------------------------------------------
- // conversions
- // -------------------------------------------------------------------------------------
- /**
- * @category conversions
- * @since 2.13.0
- */
- export var fromReader = /*#__PURE__*/ RT.fromReader(I.Pointed);
- /**
- * @category conversions
- * @since 2.13.0
- */
- export var fromIO = /*#__PURE__*/ R.of;
- // -------------------------------------------------------------------------------------
- // combinators
- // -------------------------------------------------------------------------------------
- /**
- * Changes the value of the local context during the execution of the action `ma` (similar to `Contravariant`'s
- * `contramap`).
- *
- * @since 2.13.0
- */
- export var local = R.local;
- /**
- * Less strict version of [`asksReaderIO`](#asksreaderio).
- *
- * The `W` suffix (short for **W**idening) means that the environment types will be merged.
- *
- * @category constructors
- * @since 2.13.0
- */
- export var asksReaderIOW = R.asksReaderW;
- /**
- * Effectfully accesses the environment.
- *
- * @category constructors
- * @since 2.13.0
- */
- export var asksReaderIO = asksReaderIOW;
- var _map = function (fa, f) { return pipe(fa, map(f)); };
- var _ap = function (fab, fa) { return pipe(fab, ap(fa)); };
- var _chain = function (ma, f) { return pipe(ma, chain(f)); };
- /**
- * `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.13.0
- */
- export var map = /*#__PURE__*/ RT.map(I.Functor);
- /**
- * @since 2.13.0
- */
- export var ap =
- /*#__PURE__*/ RT.ap(I.Apply);
- /**
- * Less strict version of [`ap`](#ap).
- *
- * The `W` suffix (short for **W**idening) means that the environment types will be merged.
- *
- * @since 2.13.0
- */
- export var apW = ap;
- /**
- * @category constructors
- * @since 2.13.0
- */
- export var of = /*#__PURE__*/ RT.of(I.Pointed);
- /**
- * Composes computations in sequence, using the return value of one computation to determine the next computation.
- *
- * @category sequencing
- * @since 2.13.0
- */
- export var chain =
- /*#__PURE__*/ RT.chain(I.Monad);
- /**
- * Less strict version of [`chain`](#chain).
- *
- * The `W` suffix (short for **W**idening) means that the environment types will be merged.
- *
- * @category sequencing
- * @since 2.13.0
- */
- export var chainW = chain;
- /**
- * Less strict version of [`flatten`](#flatten).
- *
- * The `W` suffix (short for **W**idening) means that the environment types will be merged.
- *
- * @category sequencing
- * @since 2.13.0
- */
- export var flattenW =
- /*#__PURE__*/ chainW(identity);
- /**
- * @category sequencing
- * @since 2.13.0
- */
- export var flatten = flattenW;
- /**
- * @category type lambdas
- * @since 2.13.0
- */
- export var URI = 'ReaderIO';
- /**
- * @category instances
- * @since 2.13.0
- */
- export var Functor = {
- URI: URI,
- map: _map
- };
- /**
- * @category mapping
- * @since 2.13.0
- */
- export var flap = /*#__PURE__*/ flap_(Functor);
- /**
- * @category instances
- * @since 2.13.0
- */
- export var Pointed = {
- URI: URI,
- of: of
- };
- /**
- * @category instances
- * @since 2.13.0
- */
- export var Apply = {
- URI: URI,
- map: _map,
- ap: _ap
- };
- /**
- * Combine two effectful actions, keeping only the result of the first.
- *
- * @since 2.13.0
- */
- export var apFirst = /*#__PURE__*/ apFirst_(Apply);
- /**
- * Combine two effectful actions, keeping only the result of the second.
- *
- * @since 2.13.0
- */
- export var apSecond = /*#__PURE__*/ apSecond_(Apply);
- /**
- * @category instances
- * @since 2.13.0
- */
- export var Applicative = {
- URI: URI,
- map: _map,
- ap: _ap,
- of: of
- };
- /**
- * @category instances
- * @since 2.13.0
- */
- export var Chain = {
- URI: URI,
- map: _map,
- ap: _ap,
- chain: _chain
- };
- /**
- * @category instances
- * @since 2.13.0
- */
- export var Monad = {
- URI: URI,
- map: _map,
- of: of,
- ap: _ap,
- chain: _chain
- };
- /**
- * @category instances
- * @since 2.13.0
- */
- export var MonadIO = {
- URI: URI,
- map: _map,
- of: of,
- ap: _ap,
- chain: _chain,
- fromIO: fromIO
- };
- /**
- * 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.13.0
- */
- export var chainFirst =
- /*#__PURE__*/ chainFirst_(Chain);
- /**
- * Less strict version of [`chainFirst`](#chainfirst).
- *
- * The `W` suffix (short for **W**idening) means that the environment types will be merged.
- *
- * @category sequencing
- * @since 2.13.0
- */
- export var chainFirstW = chainFirst;
- /**
- * @category instances
- * @since 2.13.0
- */
- export var FromIO = {
- URI: URI,
- fromIO: fromIO
- };
- /**
- * @category lifting
- * @since 2.13.0
- */
- export var fromIOK = /*#__PURE__*/ fromIOK_(FromIO);
- /**
- * @category sequencing
- * @since 2.13.0
- */
- export var chainIOK =
- /*#__PURE__*/ chainIOK_(FromIO, Chain);
- /**
- * @category sequencing
- * @since 2.13.0
- */
- export var chainFirstIOK =
- /*#__PURE__*/ chainFirstIOK_(FromIO, Chain);
- /**
- * @category instances
- * @since 2.13.0
- */
- export var FromReader = {
- URI: URI,
- fromReader: fromReader
- };
- /**
- * Reads the current context.
- *
- * @category constructors
- * @since 2.13.0
- */
- export var ask = /*#__PURE__*/ ask_(FromReader);
- /**
- * Projects a value from the global context in a `ReaderIO`.
- *
- * @category constructors
- * @since 2.13.0
- */
- export var asks = /*#__PURE__*/ asks_(FromReader);
- /**
- * @category lifting
- * @since 2.13.0
- */
- export var fromReaderK = /*#__PURE__*/ fromReaderK_(FromReader);
- /**
- * @category sequencing
- * @since 2.13.0
- */
- export var chainReaderK =
- /*#__PURE__*/ chainReaderK_(FromReader, Chain);
- /**
- * Less strict version of [`chainReaderK`](#chainreaderk).
- *
- * The `W` suffix (short for **W**idening) means that the environment types will be merged.
- *
- * @category sequencing
- * @since 2.13.0
- */
- export var chainReaderKW = chainReaderK;
- /**
- * @category sequencing
- * @since 2.13.0
- */
- export var chainFirstReaderK =
- /*#__PURE__*/ chainFirstReaderK_(FromReader, Chain);
- /**
- * Less strict version of [`chainFirstReaderK`](#chainfirstreaderk).
- *
- * The `W` suffix (short for **W**idening) means that the environment types will be merged.
- *
- * @category sequencing
- * @since 2.13.0
- */
- export var chainFirstReaderKW = chainFirstReaderK;
- // -------------------------------------------------------------------------------------
- // do notation
- // -------------------------------------------------------------------------------------
- /**
- * @category do notation
- * @since 2.13.0
- */
- export var Do = /*#__PURE__*/ of(_.emptyRecord);
- /**
- * @category do notation
- * @since 2.13.0
- */
- export var bindTo = /*#__PURE__*/ bindTo_(Functor);
- /**
- * @category do notation
- * @since 2.13.0
- */
- export var bind = /*#__PURE__*/ bind_(Chain);
- /**
- * The `W` suffix (short for **W**idening) means that the environment types will be merged.
- *
- * @category do notation
- * @since 2.13.0
- */
- export var bindW = bind;
- /**
- * @category do notation
- * @since 2.13.0
- */
- export var apS = /*#__PURE__*/ apS_(Apply);
- /**
- * Less strict version of [`apS`](#aps).
- *
- * The `W` suffix (short for **W**idening) means that the environment types will be merged.
- *
- * @category do notation
- * @since 2.13.0
- */
- export var apSW = apS;
- /**
- * @since 2.13.0
- */
- export var ApT = /*#__PURE__*/ of(_.emptyReadonlyArray);
- // -------------------------------------------------------------------------------------
- // array utils
- // -------------------------------------------------------------------------------------
- /**
- * Equivalent to `ReadonlyNonEmptyArray#traverseWithIndex(Applicative)`.
- *
- * @category traversing
- * @since 2.13.0
- */
- export var traverseReadonlyNonEmptyArrayWithIndex = function (f) {
- return flow(R.traverseReadonlyNonEmptyArrayWithIndex(f), R.map(I.traverseReadonlyNonEmptyArrayWithIndex(SK)));
- };
- /**
- * Equivalent to `ReadonlyArray#traverseWithIndex(Applicative)`.
- *
- * @category traversing
- * @since 2.13.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.13.0
- */
- export var traverseArrayWithIndex = traverseReadonlyArrayWithIndex;
- /**
- * Equivalent to `ReadonlyArray#traverse(Applicative)`.
- *
- * @category traversing
- * @since 2.13.0
- */
- export var traverseArray = function (f) { return traverseReadonlyArrayWithIndex(function (_, a) { return f(a); }); };
- /**
- * Equivalent to `ReadonlyArray#sequence(Applicative)`.
- *
- * @category traversing
- * @since 2.13.0
- */
- export var sequenceArray =
- /*#__PURE__*/ traverseArray(identity);
|