Skip to main content

bock_core/primitives/
mod.rs

1//! Primitive type method registrations.
2//!
3//! Each submodule registers methods and trait implementations for one
4//! primitive type into the [`BuiltinRegistry`].
5
6pub mod bool;
7pub mod char;
8pub mod duration;
9pub mod float;
10pub mod instant;
11pub mod int;
12pub mod string;