operator + method

Validator<T> operator +(
  1. Validator<T> other
)

Implementation

Validator<T> operator +(Validator<T> other) {
  return combine(other);
}