sage_runtime/stdlib/mod.rs
1//! Standard library functions for Sage.
2//!
3//! This module provides runtime helper functions for the Sage standard library.
4//! Most stdlib functions are inlined during codegen, but some require runtime
5//! helpers for correct Unicode handling or complex logic.
6
7mod io;
8mod json;
9mod parsing;
10mod string;
11mod time;
12
13pub use io::*;
14pub use json::*;
15pub use parsing::*;
16pub use string::*;
17pub use time::*;