Link Search Menu Expand Document

Optional overview

This module is experimental

Experimental features are published in order to get early feedback from the community.

A feature tagged as Experimental is in a high state of flux, you’re at risk of it changing without notice.

An Optional is an optic used to zoom inside a product. Unlike the Lens, the element that the Optional focuses on may not exist.

Optionals have two type parameters generally called S and A: Optional<S, A> where S represents the product and A an optional element inside of S.

Laws:

  1. pipe(getOption(s), fold(() => s, a => set(a)(s))) = s
  2. getOption(set(a)(s)) = pipe(getOption(s), map(_ => a))
  3. set(a)(set(a)(s)) = set(a)(s)

Added in v2.3.0


Table of contents


Invariant

imap

Signature

export declare const imap: <A, B>(f: (a: A) => B, g: (b: B) => A) => <E>(fa: Optional<E, A>) => Optional<E, B>

Added in v2.3.0

combinators

atKey

Return a Optional from a Optional focused on a required key of a ReadonlyRecord.

Signature

export declare const atKey: (
  key: string
) => <S, A>(sa: Optional<S, Readonly<Record<string, A>>>) => Optional<S, O.Option<A>>

Added in v2.3.0

component

Return a Optional from a Optional focused on a component of a tuple.

Signature

export declare const component: <A extends readonly unknown[], P extends keyof A>(
  prop: P
) => <S>(sa: Optional<S, A>) => Optional<S, A[P]>

Added in v2.3.0

filter

Signature

export declare function filter<A, B extends A>(refinement: Refinement<A, B>): <S>(sa: Optional<S, A>) => Optional<S, B>
export declare function filter<A>(predicate: Predicate<A>): <S>(sa: Optional<S, A>) => Optional<S, A>

Added in v2.3.0

findFirst

Signature

export declare function findFirst<A, B extends A>(
  refinement: Refinement<A, B>
): <S>(sa: Optional<S, ReadonlyArray<A>>) => Optional<S, B>
export declare function findFirst<A>(predicate: Predicate<A>): <S>(sa: Optional<S, ReadonlyArray<A>>) => Optional<S, A>

Added in v2.3.2

findFirstNonEmpty

Signature

export declare function findFirstNonEmpty<A, B extends A>(
  refinement: Refinement<A, B>
): <S>(sa: Optional<S, ReadonlyNonEmptyArray<A>>) => Optional<S, B>
export declare function findFirstNonEmpty<A>(
  predicate: Predicate<A>
): <S>(sa: Optional<S, ReadonlyNonEmptyArray<A>>) => Optional<S, A>

Added in v2.3.8

fromNullable

Return an Optional from a Optional focused on a nullable value.

Signature

export declare const fromNullable: <S, A>(sa: Optional<S, A>) => Optional<S, NonNullable<A>>

Added in v2.3.3

index

Return a Optional from a Optional focused on an index of a ReadonlyArray.

Signature

export declare const index: (i: number) => <S, A>(sa: Optional<S, readonly A[]>) => Optional<S, A>

Added in v2.3.0

indexNonEmpty

Return a Optional from a Optional focused on an index of a ReadonlyNonEmptyArray.

Signature

export declare const indexNonEmpty: (i: number) => <S, A>(sa: Optional<S, ReadonlyNonEmptyArray<A>>) => Optional<S, A>

Added in v2.3.8

key

Return a Optional from a Optional focused on a key of a ReadonlyRecord.

Signature

export declare const key: (key: string) => <S, A>(sa: Optional<S, Readonly<Record<string, A>>>) => Optional<S, A>

Added in v2.3.0

left

Return a Optional from a Optional focused on the Left of a Either type.

Signature

export declare const left: <S, E, A>(sea: Optional<S, Either<E, A>>) => Optional<S, E>

Added in v2.3.0

modify

Signature

export declare const modify: <A, B extends A = A>(f: (a: A) => B) => <S>(optional: Optional<S, A>) => (s: S) => S

Added in v2.3.0

modifyF

Signature

export declare function modifyF<F extends URIS3>(
  F: Applicative3<F>
): <A, R, E>(f: (a: A) => Kind3<F, R, E, A>) => <S>(sa: Optional<S, A>) => (s: S) => Kind3<F, R, E, S>
export declare function modifyF<F extends URIS2>(
  F: Applicative2<F>
): <A, E>(f: (a: A) => Kind2<F, E, A>) => <S>(sa: Optional<S, A>) => (s: S) => Kind2<F, E, S>
export declare function modifyF<F extends URIS>(
  F: Applicative1<F>
): <A>(f: (a: A) => Kind<F, A>) => <S>(sa: Optional<S, A>) => (s: S) => Kind<F, S>
export declare function modifyF<F>(
  F: Applicative<F>
): <A>(f: (a: A) => HKT<F, A>) => <S>(sa: Optional<S, A>) => (s: S) => HKT<F, S>

Added in v2.3.5

modifyOption

Signature

export declare const modifyOption: <A, B extends A = A>(
  f: (a: A) => B
) => <S>(optional: Optional<S, A>) => (s: S) => O.Option<S>

Added in v2.3.0

prop

Return a Optional from a Optional and a prop.

Signature

export declare const prop: <A, P extends keyof A>(prop: P) => <S>(sa: Optional<S, A>) => Optional<S, A[P]>

Added in v2.3.0

props

Return a Optional from a Optional and a list of props.

Signature

export declare const props: <A, P extends keyof A>(
  props_0: P,
  props_1: P,
  ...props_2: P[]
) => <S>(sa: Optional<S, A>) => Optional<S, { [K in P]: A[K] }>

Added in v2.3.0

Return a Optional from a Optional focused on the Right of a Either type.

Signature

export declare const right: <S, E, A>(sea: Optional<S, Either<E, A>>) => Optional<S, A>

Added in v2.3.0

setOption

Signature

export declare const setOption: <A>(a: A) => <S>(optional: Optional<S, A>) => (s: S) => O.Option<S>

Added in v2.3.7

some

Return a Optional from a Optional focused on the Some of a Option type.

Signature

export declare const some: <S, A>(soa: Optional<S, O.Option<A>>) => Optional<S, A>

Added in v2.3.0

traverse

Return a Traversal from a Optional focused on a Traversable.

Signature

export declare function traverse<T extends URIS>(
  T: Traversable1<T>
): <S, A>(sta: Optional<S, Kind<T, A>>) => Traversal<S, A>

Added in v2.3.0

compositions

compose

Compose a Optional with a Optional.

Signature

export declare const compose: <A, B>(ab: Optional<A, B>) => <S>(sa: Optional<S, A>) => Optional<S, B>

Added in v2.3.0

composeIso

Compose a Optional with a Iso.

Signature

export declare const composeIso: <A, B>(ab: Iso<A, B>) => <S>(sa: Optional<S, A>) => Optional<S, B>

Added in v2.3.8

composeLens

Compose a Optional with a Lens.

Signature

export declare const composeLens: <A, B>(ab: Lens<A, B>) => <S>(sa: Optional<S, A>) => Optional<S, B>

Added in v2.3.7

composeOptional

Alias of compose.

Signature

export declare const composeOptional: <A, B>(ab: Optional<A, B>) => <S>(sa: Optional<S, A>) => Optional<S, B>

Added in v2.3.8

composePrism

Compose a Optional with a Prism.

Signature

export declare const composePrism: <A, B>(ab: Prism<A, B>) => <S>(sa: Optional<S, A>) => Optional<S, B>

Added in v2.3.7

composeTraversal

Compose a Optional with an Traversal.

Signature

export declare const composeTraversal: <A, B>(ab: Traversal<A, B>) => <S>(sa: Optional<S, A>) => Traversal<S, B>

Added in v2.3.8

constructors

id

Signature

export declare const id: <S>() => Optional<S, S>

Added in v2.3.0

optional

Signature

export declare const optional: <S, A>(getOption: (s: S) => O.Option<A>, set: (a: A) => (s: S) => S) => Optional<S, A>

Added in v2.3.8

converters

asTraversal

View a Optional as a Traversal.

Signature

export declare const asTraversal: <S, A>(sa: Optional<S, A>) => Traversal<S, A>

Added in v2.3.0

instances

Category

Signature

export declare const Category: Category2<'monocle-ts/Optional'>

Added in v2.3.0

Invariant

Signature

export declare const Invariant: Invariant2<'monocle-ts/Optional'>

Added in v2.3.0

Semigroupoid

Signature

export declare const Semigroupoid: Semigroupoid2<'monocle-ts/Optional'>

Added in v2.3.8

URI

Signature

export declare const URI: 'monocle-ts/Optional'

Added in v2.3.0

URI (type alias)

Signature

export type URI = typeof URI

Added in v2.3.0

model

Optional (interface)

Signature

export interface Optional<S, A> {
  readonly getOption: (s: S) => Option<A>
  readonly set: (a: A) => (s: S) => S
}

Added in v2.3.0