LazyFormix<T, E> constructor

LazyFormix<T, E>(
  1. Formix<T, E> _factory()
)

Creates a lazy validator from a factory function.

The factory is called at most once, on first validate call.

Implementation

LazyFormix(this._factory);