| andThenAsyncForUndefinable | Returns undefinedif the input isundefined,
otherwise calls transformer with the value and returns the result. | 
| andThenForUndefinable | Returns undefinedif the input isundefined,
otherwise calls transformer with the value and returns the result. | 
| expectNotUndefined | Return input as Tif the passed input is notundefined.
Otherwise, throwTypeErrorwith the passedmsg. | 
| inspectUndefinable | 
Return input directly.
This value is passed as the input. But it maybe mutated by calling effector.Call effector with input if input is not undefined. | 
| isNotUndefined |  | 
| isUndefined |  | 
| mapAsyncForUndefinable | Return the result of transformer with using input as an argument for it if input is not undefined,
Otherwise, returnundefined. | 
| mapForUndefinable | Return the result of transformer with using input as an argument for it if input is not undefined,
Otherwise, returnundefined. | 
| mapOrAsyncForUndefinable | Return the result of transformer with using input as an argument for it if input is not undefined.
Otherwise, return defaultValue. | 
| mapOrElseAsyncForUndefinable | Return the result of transformer with using input as an argument for it if input is not undefined.
Otherwise, return the result of recoverer. | 
| mapOrElseForUndefinable | Return the result of transformer with using input as an argument for it if input is not undefined.
Otherwise, return the result of recoverer. | 
| mapOrForUndefinable | Return the result of transformer with using input as an argument for it if input is not undefined.
Otherwise, return defaultValue. | 
| okOrElseAsyncForUndefinable | Transforms the Undefinable<T>into aResult<T, E>by mappingTtoOk(T).
Ifinputisundefined, then returnsErr(E)with the result ofrecoverer() | 
| okOrElseForUndefinable | Transforms the Undefinable<T>into aResult<T, E>by mappingTtoOk(T).
Ifinputisundefined, then returnsErr(E)with the result ofrecoverer() | 
| okOrForUndefinable | Transforms the Undefinable<T>into aResult<T, E>by mappingTtoOk(T).
Ifinputisundefined, then returnErr(E)with passederr. | 
| orElseAsyncForUndefinable | Return input as Tif the passed input is notundefined.
Otherwise, return the result of recoverer. | 
| orElseForUndefinable | Return input as Tif the passed input is notundefined.
Otherwise, return the result of recoverer. | 
| toNullableFromUndefinable | Return nullif input isundfined.
Otherwise, returnTdirectly. | 
| toResultErrFromUndefinable | Return Ok<void>if input isundefinable.
Otherwise, returnErr<E>directly. | 
| toResultOkFromUndefinable | Return Err<void>if input isundefinable.
Otherwise, returnOk<T>directly. | 
| unwrapOrElseAsyncForUndefinable | Return input as Tif the passed input is notundefined.
Otherwise, return the result of recoverer. | 
| unwrapOrElseForUndefinable | Return input as Tif the passed input is notundefined.
Otherwise, return the result of recoverer. | 
| unwrapOrForUndefinable | Return input as Tif the passed input is notundefined.
Otherwise, return defaultValue. | 
| unwrapUndefinable | Return input as Tif the passed input is notundefined.
Otherwise, throwTypeError. |