* Constructs a value from the make input representation synchronously. * * **When to use** * * Use when constructor input is trusted or when validation failure * should abort with a thrown `Error`. * * **Details** * * Applies constructor defaults and type-side validation a
(input: this["~type.make.in"], options?: MakeOptions)
| 212 | * @see {@link BottomWithoutNew.makeEffect} — construct through `Effect` when validation failure should stay in the error channel |
| 213 | */ |
| 214 | make(input: this["~type.make.in"], options?: MakeOptions): this["Type"] |
| 215 | /** |
| 216 | * Constructs a value from the make input representation, returning `Option.none` |
| 217 | * when validation fails. |
no outgoing calls