Wrap Maybe to singleton generator
Userful in order to avoid ambiguous yied types
generator of Maybe wrapping this
Readonly
rightEither composition function
Applied to 'right value' returns 'op(value)' Applied to 'left error' returns self without invoking composition function
'op(value)' or 'left error'
Either transformer function
Applied to 'right value' returns 'right op(value)' Applied to 'left error' returns self without invoking transformer
'right op(value)' or 'left error'
Either pattern matching composition function
Applied to 'right value' returns 'op.right(value)' Applied to 'left error' returns 'op.left(error)'
'op(value)' or 'op(error)'
Either pattern matching transformer function
Applied to 'right value' returns 'right op.right(value)' Applied to 'left error' returns 'right op.left(error)'
right transformer function's return type
left transformer function's return type
'right op.right(value)' or 'right op.left(error)'
Either pattern matching peeker function
Applied to 'right value' returns self invoking op.right(value) in process Applied to 'left error' returns self invoking op.left(error) in process
function to be invoked with underlying error in case of 'left'
function to be invoked with underlying error in case of 'left'
function to be invoked with underlying value in case of 'right'
function to be invoked with underlying value in case of 'right'
self
Either composition function
Applied to 'right value' returns self without invoking composition function Applied to 'left error' returns 'op(error)'
'right value' or 'op(error)'
Either fallback transformer function
Applied to 'right value' returns self without invoking transformer Applied to 'left error' returns 'right op(error)'
'right value' or 'right op(error)'
Either fallback peeker function
Applied to 'right value' returns self without invoking callback Applied to 'left error' returns self invoking op(error) in process
function to be invoked with underlying error
self
Either peeker function
Applied to 'right value' returns self invoking op(value) in process Applied to 'left error' returns self without invoking callback
function to be invoked with underlying value
self
Generated using TypeDoc
Right (correct) value of type R
Either data type specialization representing a correct value