then<O> method

ValidatorT<S, O> then<O>(
  1. ValidatorT<T, O> validator
)

Chains a validation to the output

Equivalent to join

Implementation

ValidatorT<S, O> then<O>(ValidatorT<T, O> validator) {
  return _join(this, validator);
}