Either<T, R>.nok constructor

Either<T, R>.nok(
  1. R nok
)

Construct a new instance with value R nok,

Implementation

factory Either.nok(R nok) => Either(nok: nok);