bock-core 0.1.0

Core stdlib registry and runtime primitives for the Bock language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Primitive type method registrations.
//!
//! Each submodule registers methods and trait implementations for one
//! primitive type into the [`BuiltinRegistry`].

pub mod bool;
pub mod char;
pub mod duration;
pub mod float;
pub mod instant;
pub mod int;
pub mod string;