Binary Raw - Docs
    Preparing search index...

    Type Alias Result<T, E>

    Result: { ok: true; value: T } | { error: E; ok: false }

    Result type for operations that can fail. Uses discriminated union for type-safe error handling.

    Type Parameters