Module cl_interpret::builtin

source ·
Expand description

Implementations of built-in functions

Structs§

  • Addition a + b
  • Bitwise And a & b
  • Prints the Debug version of the input values
  • Division a / b
  • Dumps info from the environment
  • Tests whether a == b
  • Tests whether a < b
  • Tests whether a <= b
  • Tests whether a < b
  • Tests whether a <= b
  • Multiplication a * b
  • Negates the ConValue
  • Tests whether a != b
  • Inverts the ConValue
  • Bitwise Or a | b
  • Unstable variadic print function
  • Exclusive Range a..b
  • Inclusive Range a..=b
  • Remainder a % b
  • Shift Left a << b
  • Shift Right a >> b
  • Subtraction a - b
  • Bitwise Exclusive Or a ^ b

Constants§

  • Builtins to load when a new interpreter is created
  • Builtins to load when a new interpreter is created
  • Builtins to load when a new interpreter is created
  • Builtins to load when a new interpreter is created

Functions§

  • Turns an argument slice into an array with the (inferred) correct number of elements