@ryandur/sand
    Preparing search index...

    Type Alias Nothing

    type Nothing = {
        isNothing: true;
        and<OTHER>(other: Maybe<OTHER>): Nothing;
        either<ON_SOME, ON_NOTHING>(
            onSome: (thing: never) => ON_SOME,
            onNothing: () => ON_NOTHING,
        ): ON_SOME | ON_NOTHING;
        inspect(): string;
        map<NEW_THING>(f: (value: never) => NEW_THING): Nothing;
        mBind<NEW_THING>(f: (value: never) => Maybe<NEW_THING>): Maybe<NEW_THING>;
        or<THING>(f: () => Maybe<THING>): Maybe<THING>;
        orElse<FALLBACK>(fallback: FALLBACK): FALLBACK;
        orNull(): null;
        toResult<ERROR>(fallback: ERROR): Result<never, ERROR>;
    }
    Index
    isNothing: true