enumstd.zig.BuiltinFn.EvalToError[src]

Fields

never

The builtin cannot possibly evaluate to an error.

always

The builtin will always evaluate to an error.

maybe

The builtin may or may not evaluate to an error depending on the parameters.

Source Code

Source code
pub const EvalToError = enum {
    /// The builtin cannot possibly evaluate to an error.
    never,
    /// The builtin will always evaluate to an error.
    always,
    /// The builtin may or may not evaluate to an error depending on the parameters.
    maybe,
}