Core types and methods in Rune.
These are types and methods for which Rune as a language would not work without.
Types
bool‐The primitive boolean type.
char‐The primitive character type.
f64‐The primitive float type.
u64‐The unsigned integer type.
Functions
is_readable‐Test if the given value
is readable.
is_writable‐Test if the given value
is writable.
panic‐Cause a vm panic with the given message
.
Macros
panic!‐Cause a vm panic with a formatted message.
stringify!‐Stringify the given argument, causing it to expand to its underlying token
Modules
any‐Dynamic typing and type reflection.
char‐The character module for Rune.
collections‐Module defining collections.
future‐Asynchronous computations.
io‐The std::io module contains a number of common things
iter‐Rune support for iterators.
ops‐Overloadable operators and associated types.
slice‐Types related to working with contiguous slices.
test‐Testing and benchmarking.
tuple‐The Tuple
fixed collection.