happy-rusty
    Preparing search index...

    Variable RESULT_TRUEConst

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

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

    1.3.0

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

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