BUILTINS

Constant BUILTINS 

Source
pub const BUILTINS: &[&str];
Expand description

Every name the compile-time environment defines.

A single list so that “is this a builtin” and “what does it do” cannot disagree — the match in Interp::builtin_inner has an unreachable! arm that fires if a name is listed here and not implemented, and every_builtin_is_implemented runs it.