happy-rusty
    Preparing search index...

    Variable RESULT_FALSEConst

    RESULT_FALSE: Result<boolean, never> = ...

    Result constant for false. Can be used anywhere due to immutability.

    1.3.0

    function validate(): Result<boolean, Error> {
    return RESULT_FALSE;
    }

    const result: Result<boolean, string> = RESULT_FALSE;
    const value: boolean = RESULT_FALSE.intoOk(); // Safe extraction