Class/Object

monocle

POptional

Related Docs: object POptional | package monocle

Permalink

abstract class POptional[S, T, A, B] extends Serializable

A POptional can be seen as a pair of functions:

A POptional could also be defined as a weaker PLens and weaker PPrism

POptional stands for Polymorphic Optional as it set and modify methods change a type A to B and S to T. Optional is a type alias for POptional restricted to monomorphic updates:

type Optional[S, A] = POptional[S, S, A, A]
S

the source of a POptional

T

the modified source of a POptional

A

the target of a POptional

B

the modified target of a POptional

Self Type
POptional[S, T, A, B]
See also

monocle.law.OptionalLaws

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. POptional
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new POptional()

    Permalink

Abstract Value Members

  1. abstract def getOption(s: S): Option[A]

    Permalink

    get the target of a POptional or nothing if there is no target

  2. abstract def getOrModify(s: S): \/[T, A]

    Permalink

    get the target of a POptional or return the original value while allowing the type to change if it does not match

  3. abstract def modify(f: (A) ⇒ B): (S) ⇒ T

    Permalink

    modify polymorphically the target of a POptional with a function

  4. abstract def modifyF[F[_]](f: (A) ⇒ F[B])(s: S)(implicit arg0: Applicative[F]): F[T]

    Permalink

    modify polymorphically the target of a POptional with an Applicative function

  5. abstract def set(b: B): (S) ⇒ T

    Permalink

    get the modified source of a POptional

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def ^<->[C, D](other: PIso[A, B, C, D]): POptional[S, T, C, D]

    Permalink

    alias to composeIso

    alias to composeIso

    Annotations
    @inline()
  5. final def ^<-?[C, D](other: PPrism[A, B, C, D]): POptional[S, T, C, D]

    Permalink

    alias to composePrism

    alias to composePrism

    Annotations
    @inline()
  6. final def ^|->[C, D](other: PLens[A, B, C, D]): POptional[S, T, C, D]

    Permalink

    alias to composeLens

    alias to composeLens

    Annotations
    @inline()
  7. final def ^|->>[C, D](other: PTraversal[A, B, C, D]): PTraversal[S, T, C, D]

    Permalink

    alias to composeTraversal

    alias to composeTraversal

    Annotations
    @inline()
  8. final def ^|-?[C, D](other: POptional[A, B, C, D]): POptional[S, T, C, D]

    Permalink

    alias to composeOptional

    alias to composeOptional

    Annotations
    @inline()
  9. final def asFold: Fold[S, A]

    Permalink

    view a POptional as a Fold

    view a POptional as a Fold

    Annotations
    @inline()
  10. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  11. final def asSetter: PSetter[S, T, A, B]

    Permalink

    view a POptional as a PSetter

    view a POptional as a PSetter

    Annotations
    @inline()
  12. final def asTraversal: PTraversal[S, T, A, B]

    Permalink

    view a POptional as a PTraversal

    view a POptional as a PTraversal

    Annotations
    @inline()
  13. final def choice[S1, T1](other: POptional[S1, T1, A, B]): POptional[\/[S, S1], \/[T, T1], A, B]

    Permalink

    join two POptional with the same target

    join two POptional with the same target

    Annotations
    @inline()
  14. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. final def composeFold[C](other: Fold[A, C]): Fold[S, C]

    Permalink

    compose a POptional with a Fold

    compose a POptional with a Fold

    Annotations
    @inline()
  16. final def composeGetter[C](other: Getter[A, C]): Fold[S, C]

    Permalink

    compose a POptional with a Getter

    compose a POptional with a Getter

    Annotations
    @inline()
  17. final def composeIso[C, D](other: PIso[A, B, C, D]): POptional[S, T, C, D]

    Permalink

    compose a POptional with a PIso

    compose a POptional with a PIso

    Annotations
    @inline()
  18. final def composeLens[C, D](other: PLens[A, B, C, D]): POptional[S, T, C, D]

    Permalink

    compose a POptional with a PLens

    compose a POptional with a PLens

    Annotations
    @inline()
  19. final def composeOptional[C, D](other: POptional[A, B, C, D]): POptional[S, T, C, D]

    Permalink

    compose a POptional with a POptional

    compose a POptional with a POptional

    Annotations
    @inline()
  20. final def composePrism[C, D](other: PPrism[A, B, C, D]): POptional[S, T, C, D]

    Permalink

    compose a POptional with a PPrism

    compose a POptional with a PPrism

    Annotations
    @inline()
  21. final def composeSetter[C, D](other: PSetter[A, B, C, D]): PSetter[S, T, C, D]

    Permalink

    compose a POptional with a PSetter

    compose a POptional with a PSetter

    Annotations
    @inline()
  22. final def composeTraversal[C, D](other: PTraversal[A, B, C, D]): PTraversal[S, T, C, D]

    Permalink

    compose a POptional with a PTraversal

    compose a POptional with a PTraversal

    Annotations
    @inline()
  23. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  24. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  25. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  26. final def first[C]: POptional[(S, C), (T, C), (A, C), (B, C)]

    Permalink
    Annotations
    @inline()
  27. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  28. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  29. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  30. final def isMatching(s: S): Boolean

    Permalink

    check if a POptional has a target

    check if a POptional has a target

    Annotations
    @inline()
  31. final def modifyOption(f: (A) ⇒ B): (S) ⇒ Option[T]

    Permalink

    modify polymorphically the target of a POptional with a function.

    modify polymorphically the target of a POptional with a function. return empty if the POptional is not matching

    Annotations
    @inline()
  32. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  33. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  34. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  35. final def second[C]: POptional[(C, S), (C, T), (C, A), (C, B)]

    Permalink
    Annotations
    @inline()
  36. final def setOption(b: B): (S) ⇒ Option[T]

    Permalink

    set polymorphically the target of a POptional with a value.

    set polymorphically the target of a POptional with a value. return empty if the POptional is not matching

    Annotations
    @inline()
  37. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  38. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  39. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. final def getMaybe(s: S): Maybe[A]

    Permalink
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 1.1.0) use getOption

  2. final def modifyMaybe(f: (A) ⇒ B): (S) ⇒ Maybe[T]

    Permalink
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 1.1.0) use modifyOption

  3. final def setMaybe(b: B): (S) ⇒ Maybe[T]

    Permalink
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 1.1.0) use setOption

  4. final def sum[S1, T1](other: POptional[S1, T1, A, B]): POptional[\/[S, S1], \/[T, T1], A, B]

    Permalink
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 1.2.0) use choice

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped