* Constructs a branded type from a value of type `A`, returning `Right ` * if the provided `A` is valid, `Left ` otherwise.
(args: Brand.Unbranded<A>)
| 103 | * if the provided `A` is valid, `Left<BrandError>` otherwise. |
| 104 | */ |
| 105 | either(args: Brand.Unbranded<A>): Either.Either<A, Brand.BrandErrors> |
| 106 | /** |
| 107 | * Attempts to refine the provided value of type `A`, returning `true` if |
| 108 | * the provided `A` is valid, `false` otherwise. |
no outgoing calls