State

enum State : Sendable

The hidden state of an instance.

  • The value has never been read; the payload is the value computation.

    Declaration

    Swift

    case unevaluated(@Sendable () -> T)
  • The value has been read and is stored in the payload.

    Declaration

    Swift

    case result(T)