/** * @since 2.0.0 */ import { Applicative2C } from './Applicative' import { Apply2C } from './Apply' import { Bifunctor2 } from './Bifunctor' import { Chain2C } from './Chain' import { ChainRec2C } from './ChainRec' import { Comonad2 } from './Comonad' import { Foldable2 } from './Foldable' import { Monad2C } from './Monad' import { Monoid } from './Monoid' import { Semigroup } from './Semigroup' import { Semigroupoid2 } from './Semigroupoid' import { Traversable2, PipeableTraverse2 } from './Traversable' import { Functor2 } from './Functor' /** * @since 2.0.0 */ export declare const fst: (ea: [A, E]) => A /** * @since 2.0.0 */ export declare const snd: (ea: [A, E]) => E /** * @since 2.0.0 */ export declare const swap: (ea: [A, E]) => [E, A] /** * @category instances * @since 2.0.0 */ export declare function getApply(S: Semigroup): Apply2C /** * @category instances * @since 2.0.0 */ export declare function getApplicative(M: Monoid): Applicative2C /** * @category instances * @since 2.0.0 */ export declare function getChain(S: Semigroup): Chain2C /** * @category instances * @since 2.0.0 */ export declare function getMonad(M: Monoid): Monad2C /** * @category instances * @since 2.0.0 */ export declare function getChainRec(M: Monoid): ChainRec2C /** * Map a pair of functions over the two type arguments of the bifunctor. * * @category mapping * @since 2.0.0 */ export declare const bimap: (mapSnd: (e: E) => G, mapFst: (a: A) => B) => (fa: [A, E]) => [B, G] /** * Map a function over the first component of a `Tuple`. * * This is the `map` operation of the `Functor` instance. * * @category mapping * @since 2.0.0 */ export declare const mapFst: (f: (a: A) => B) => (fa: [A, E]) => [B, E] /** * Map a function over the second component of a `Tuple`. * * This is the `mapLeft` operation of the `Bifunctor` instance. * * @category mapping * @since 2.10.0 */ export declare const mapSnd: (f: (e: E) => G) => (fa: [A, E]) => [A, G] /** * @since 2.0.0 */ export declare const compose: (ab: [B, A]) => (bc: [C, B]) => [C, A] /** * @since 2.0.0 */ export declare const extend: (f: (wa: [A, E]) => B) => (wa: [A, E]) => [B, E] /** * @since 2.0.0 */ export declare const duplicate: (wa: [A, E]) => [[A, E], E] /** * @category Extract * @since 2.6.2 */ export declare const extract: (wa: [A, E]) => A /** * @category folding * @since 2.0.0 */ export declare const foldMap: (M: Monoid) => (f: (a: A) => M) => (fa: [A, E]) => M /** * @category folding * @since 2.0.0 */ export declare const reduce: (b: B, f: (b: B, a: A) => B) => (fa: [A, E]) => B /** * @category folding * @since 2.0.0 */ export declare const reduceRight: (b: B, f: (a: A, b: B) => B) => (fa: [A, E]) => B /** * @category traversing * @since 2.6.3 */ export declare const traverse: PipeableTraverse2 /** * @category traversing * @since 2.6.3 */ export declare const sequence: Traversable2['sequence'] /** * @category type lambdas * @since 2.0.0 */ export declare const URI = 'Tuple' /** * @category type lambdas * @since 2.0.0 */ export declare type URI = typeof URI declare module './HKT' { interface URItoKind2 { readonly [URI]: [A, E] } } /** * @category instances * @since 2.7.0 */ export declare const Functor: Functor2 /** * @category mapping * @since 2.10.0 */ export declare const flap: (a: A) => (fab: [(a: A) => B, E]) => [B, E] /** * @category instances * @since 2.7.0 */ export declare const Bifunctor: Bifunctor2 /** * @category instances * @since 2.7.0 */ export declare const Semigroupoid: Semigroupoid2 /** * @category instances * @since 2.7.0 */ export declare const Comonad: Comonad2 /** * @category instances * @since 2.7.0 */ export declare const Foldable: Foldable2 /** * @category instances * @since 2.7.0 */ export declare const Traversable: Traversable2 /** * Use [`mapFst`](#mapfst) instead. * * @category zone of death * @since 2.0.0 * @deprecated */ export declare const map: (f: (a: A) => B) => (fa: [A, E]) => [B, E] /** * Use [`mapSnd`](#mapsnd) instead. * * @category zone of death * @since 2.0.0 * @deprecated */ export declare const mapLeft: (f: (e: E) => G) => (fa: [A, E]) => [A, G] /** * This instance is deprecated, use small, specific instances instead. * For example if a function needs a `Functor` instance, pass `T.Functor` instead of `T.tuple` * (where `T` is from `import T from 'fp-ts/Tuple'`) * * @category zone of death * @since 2.0.0 * @deprecated */ export declare const tuple: Semigroupoid2 & Bifunctor2 & Comonad2 & Foldable2 & Traversable2