init component
This commit is contained in:
322
node_modules/fp-ts/es6/State.js
generated
vendored
Normal file
322
node_modules/fp-ts/es6/State.js
generated
vendored
Normal file
@@ -0,0 +1,322 @@
|
||||
import { apFirst as apFirst_, apS as apS_, apSecond as apSecond_ } from './Apply';
|
||||
import * as chainable from './Chain';
|
||||
import { dual, identity, pipe } from './function';
|
||||
import { bindTo as bindTo_, flap as flap_, let as let__ } from './Functor';
|
||||
import * as _ from './internal';
|
||||
// -------------------------------------------------------------------------------------
|
||||
// constructors
|
||||
// -------------------------------------------------------------------------------------
|
||||
/**
|
||||
* Get the current state
|
||||
*
|
||||
* @category constructors
|
||||
* @since 2.0.0
|
||||
*/
|
||||
export var get = function () { return function (s) { return [s, s]; }; };
|
||||
/**
|
||||
* Set the state
|
||||
*
|
||||
* @category constructors
|
||||
* @since 2.0.0
|
||||
*/
|
||||
export var put = function (s) { return function () { return [undefined, s]; }; };
|
||||
/**
|
||||
* Modify the state by applying a function to the current state
|
||||
*
|
||||
* @category constructors
|
||||
* @since 2.0.0
|
||||
*/
|
||||
export var modify = function (f) { return function (s) { return [undefined, f(s)]; }; };
|
||||
/**
|
||||
* Get a value which depends on the current state
|
||||
*
|
||||
* @category constructors
|
||||
* @since 2.0.0
|
||||
*/
|
||||
export var gets = function (f) { return function (s) { return [f(s), s]; }; };
|
||||
/* istanbul ignore next */
|
||||
var _map = function (fa, f) { return pipe(fa, map(f)); };
|
||||
/* istanbul ignore next */
|
||||
var _ap = function (fab, fa) { return pipe(fab, ap(fa)); };
|
||||
/**
|
||||
* `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 function (s1) {
|
||||
var _a = fa(s1), a = _a[0], s2 = _a[1];
|
||||
return [f(a), s2];
|
||||
}; }; };
|
||||
/**
|
||||
* @since 2.0.0
|
||||
*/
|
||||
export var ap = function (fa) { return function (fab) { return function (s1) {
|
||||
var _a = fab(s1), f = _a[0], s2 = _a[1];
|
||||
var _b = fa(s2), a = _b[0], s3 = _b[1];
|
||||
return [f(a), s3];
|
||||
}; }; };
|
||||
/**
|
||||
* @category constructors
|
||||
* @since 2.0.0
|
||||
*/
|
||||
export var of = function (a) { return function (s) { return [a, s]; }; };
|
||||
/**
|
||||
* @category sequencing
|
||||
* @since 2.14.0
|
||||
*/
|
||||
export var flatMap = /*#__PURE__*/ dual(2, function (ma, f) {
|
||||
return function (s1) {
|
||||
var _a = ma(s1), a = _a[0], s2 = _a[1];
|
||||
return f(a)(s2);
|
||||
};
|
||||
});
|
||||
/**
|
||||
* @category sequencing
|
||||
* @since 2.0.0
|
||||
*/
|
||||
export var flatten = /*#__PURE__*/ flatMap(identity);
|
||||
/**
|
||||
* @category type lambdas
|
||||
* @since 2.0.0
|
||||
*/
|
||||
export var URI = 'State';
|
||||
/**
|
||||
* @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: flatMap
|
||||
};
|
||||
/**
|
||||
* @category instances
|
||||
* @since 2.7.0
|
||||
*/
|
||||
export var Monad = {
|
||||
URI: URI,
|
||||
map: _map,
|
||||
ap: _ap,
|
||||
of: of,
|
||||
chain: flatMap
|
||||
};
|
||||
/**
|
||||
* 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 combinators
|
||||
* @since 2.15.0
|
||||
*/
|
||||
export var tap = /*#__PURE__*/ dual(2, chainable.tap(Chain));
|
||||
/**
|
||||
* @category instances
|
||||
* @since 2.11.0
|
||||
*/
|
||||
export var FromState = {
|
||||
URI: URI,
|
||||
fromState: identity
|
||||
};
|
||||
// -------------------------------------------------------------------------------------
|
||||
// utils
|
||||
// -------------------------------------------------------------------------------------
|
||||
/**
|
||||
* Run a computation in the `State` monad, discarding the final state
|
||||
*
|
||||
* @since 2.8.0
|
||||
*/
|
||||
export var evaluate = function (s) {
|
||||
return function (ma) {
|
||||
return ma(s)[0];
|
||||
};
|
||||
};
|
||||
/**
|
||||
* Run a computation in the `State` monad discarding the result
|
||||
*
|
||||
* @since 2.8.0
|
||||
*/
|
||||
export var execute = function (s) {
|
||||
return function (ma) {
|
||||
return ma(s)[1];
|
||||
};
|
||||
};
|
||||
// -------------------------------------------------------------------------------------
|
||||
// do notation
|
||||
// -------------------------------------------------------------------------------------
|
||||
/**
|
||||
* @since 2.8.0
|
||||
*/
|
||||
export var bindTo = /*#__PURE__*/ bindTo_(Functor);
|
||||
var let_ = /*#__PURE__*/ let__(Functor);
|
||||
export {
|
||||
/**
|
||||
* @since 2.13.0
|
||||
*/
|
||||
let_ as let };
|
||||
/**
|
||||
* @since 2.8.0
|
||||
*/
|
||||
export var bind = /*#__PURE__*/ chainable.bind(Chain);
|
||||
// -------------------------------------------------------------------------------------
|
||||
// pipeable sequence S
|
||||
// -------------------------------------------------------------------------------------
|
||||
/**
|
||||
* @since 2.8.0
|
||||
*/
|
||||
export var apS = /*#__PURE__*/ apS_(Apply);
|
||||
// -------------------------------------------------------------------------------------
|
||||
// array utils
|
||||
// -------------------------------------------------------------------------------------
|
||||
/**
|
||||
* Equivalent to `ReadonlyNonEmptyArray#traverseWithIndex(Applicative)`.
|
||||
*
|
||||
* @category traversing
|
||||
* @since 2.11.0
|
||||
*/
|
||||
export var traverseReadonlyNonEmptyArrayWithIndex = function (f) {
|
||||
return function (as) {
|
||||
return function (s) {
|
||||
var _a = f(0, _.head(as))(s), b = _a[0], s2 = _a[1];
|
||||
var bs = [b];
|
||||
var out = s2;
|
||||
for (var i = 1; i < as.length; i++) {
|
||||
var _b = f(i, as[i])(out), b_1 = _b[0], s2_1 = _b[1];
|
||||
bs.push(b_1);
|
||||
out = s2_1;
|
||||
}
|
||||
return [bs, 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) : of(_.emptyReadonlyArray)); };
|
||||
};
|
||||
/**
|
||||
* 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);
|
||||
// -------------------------------------------------------------------------------------
|
||||
// legacy
|
||||
// -------------------------------------------------------------------------------------
|
||||
/**
|
||||
* Alias of `flatMap`.
|
||||
*
|
||||
* @category legacy
|
||||
* @since 2.0.0
|
||||
*/
|
||||
export var chain = flatMap;
|
||||
/**
|
||||
* Alias of `tap`.
|
||||
*
|
||||
* @category legacy
|
||||
* @since 2.0.0
|
||||
*/
|
||||
export var chainFirst = tap;
|
||||
// -------------------------------------------------------------------------------------
|
||||
// deprecated
|
||||
// -------------------------------------------------------------------------------------
|
||||
/**
|
||||
* Use [`evaluate`](#evaluate) instead
|
||||
*
|
||||
* @category zone of death
|
||||
* @since 2.0.0
|
||||
* @deprecated
|
||||
*/
|
||||
export var evalState = function (ma, s) { return ma(s)[0]; };
|
||||
/**
|
||||
* Use [`execute`](#execute) instead
|
||||
*
|
||||
* @category zone of death
|
||||
* @since 2.0.0
|
||||
* @deprecated
|
||||
*/
|
||||
export var execState = function (ma, s) { return ma(s)[1]; };
|
||||
/**
|
||||
* This instance is deprecated, use small, specific instances instead.
|
||||
* For example if a function needs a `Functor` instance, pass `S.Functor` instead of `S.state`
|
||||
* (where `S` is from `import S from 'fp-ts/State'`)
|
||||
*
|
||||
* @category zone of death
|
||||
* @since 2.0.0
|
||||
* @deprecated
|
||||
*/
|
||||
export var state = Monad;
|
||||
Reference in New Issue
Block a user