happy-rusty
    Preparing search index...

    Variable RESULT_VOIDConst

    RESULT_VOID: Result<void, never> = ...

    Result constant for void or (). Can be used anywhere due to immutability.

    1.4.0

    function doSomething(): Result<void, Error> {
    return RESULT_VOID;
    }

    const result: Result<void, string> = RESULT_VOID;
    RESULT_VOID.intoOk(); // Safe extraction (returns undefined)