operator & method

LyBaseValidator<String?> operator &(
  1. LyBaseValidator<String?> other
)
inherited

Implementation

LyBaseValidator<T> operator &(LyBaseValidator<T> other) {
  return LyAndValidator(this, other);
}