combine method

Validator<T> combine(
  1. Validator<T> other
)

Implementation

Validator<T> combine(Validator<T> other) {
  return CompositeValidator([this, other]);
}