operator & method

Validated<T> operator &(
  1. Validated<T> other
)

Combines two validation results, merging their errors.

Implementation

Validated<T> operator &(Validated<T> other) => and(other);