std¶
Purpose: standard language/runtime helpers used by almost every Novus app.
Typical import:
Notes¶
- This page lists wrapper-style function families once.
- It does not expand every overload variant.
- The signatures below show the common forms you will usually call in app code.
- Some newer wrappers still smooth over language/toolchain gaps, so treat them as the practical current API rather than a final stable design.
Output and process control¶
Conversion families¶
fn to_str(n: i32) -> str;
fn to_str(n: i64) -> str;
fn to_str(n: u32) -> str;
fn to_str(n: u64) -> str;
fn to_str(n: f32) -> str;
fn to_str(n: f64) -> str;
fn to_str(b: bool) -> str;
fn to_str(s: str) -> str;
fn to_i32(s: str) -> i32;
fn to_i32(n: i64) -> i32;
fn to_i32(n: u64) -> i32;
fn to_i32(n: u32) -> i32;
fn to_i32(n: f32) -> i32;
fn to_i32(n: f64) -> i32;
fn to_i32(n: i32) -> i32;
fn to_i64(s: str) -> i64;
fn to_i64(n: i32) -> i64;
fn to_i64(n: u64) -> i64;
fn to_i64(n: u32) -> i64;
fn to_i64(n: f32) -> i64;
fn to_i64(n: f64) -> i64;
fn to_i64(n: i64) -> i64;
fn to_u32(s: str) -> u32;
fn to_u32(n: i32) -> u32;
fn to_u32(n: i64) -> u32;
fn to_u32(n: u32) -> u32;
fn to_u32(n: u64) -> u32;
fn to_u32(n: f32) -> u32;
fn to_u32(n: f64) -> u32;
fn to_u64(s: str) -> u64;
fn to_u64(n: i32) -> u64;
fn to_u64(n: i64) -> u64;
fn to_u64(n: u32) -> u64;
fn to_u64(n: f32) -> u64;
fn to_u64(n: f64) -> u64;
fn to_u64(n: u64) -> u64;
fn to_f32(s: str) -> f32;
fn to_f32(n: i32) -> f32;
fn to_f32(n: i64) -> f32;
fn to_f32(n: u32) -> f32;
fn to_f32(n: u64) -> f32;
fn to_f32(n: f32) -> f32;
fn to_f32(n: f64) -> f32;
fn to_f64(s: str) -> f64;
fn to_f64(n: i32) -> f64;
fn to_f64(n: i64) -> f64;
fn to_f64(n: u32) -> f64;
fn to_f64(n: u64) -> f64;
fn to_f64(n: f32) -> f64;
fn to_f64(n: f64) -> f64;
fn to_bool(s: str) -> bool;
fn to_bool(b: bool) -> bool;
fn to_hex(n: i32) -> str;
Container helpers¶
fn len(s: str) -> i32;
fn len(arr: []i32) -> i32;
fn len(arr: []i64) -> i32;
fn len(arr: []u32) -> i32;
fn len(arr: []u64) -> i32;
fn len(arr: []bool) -> i32;
fn len(arr: []f32) -> i32;
fn len(arr: []f64) -> i32;
fn len(arr: []str) -> i32;
fn contains(s: str, needle: str) -> bool;
fn contains(arr: []i32, v: i32) -> bool;
fn contains(arr: []i64, v: i64) -> bool;
fn contains(arr: []u32, v: u32) -> bool;
fn contains(arr: []u64, v: u64) -> bool;
fn contains(arr: []bool, v: bool) -> bool;
fn contains(arr: []f32, v: f32) -> bool;
fn contains(arr: []f64, v: f64) -> bool;
fn contains(arr: []str, v: str) -> bool;
String helpers¶
fn equals(a: str, b: str) -> bool;
fn find(s: str, needle: str) -> i32;
fn last_find(s: str, needle: str) -> i32;
fn count(s: str, needle: str) -> i32;
fn is_empty(s: str) -> bool;
fn is_blank(s: str) -> bool;
fn lower(s: str) -> str;
fn upper(s: str) -> str;
fn reverse(s: str) -> str;
fn repeat(s: str, n: i32) -> str;
fn trim(s: str) -> str;
fn trim_left(s: str) -> str;
fn trim_right(s: str) -> str;
fn pad_left(s: str, total: i32, pad: str) -> str;
fn pad_right(s: str, total: i32, pad: str) -> str;
fn replace(s: str, old_val: str, new_val: str) -> str;
fn replace_first(s: str, old_val: str, new_val: str) -> str;
fn split_first(s: str, delim: str) -> str;
fn split_rest(s: str, delim: str) -> str;
Runtime and environment helpers¶
Memory wrappers¶
fn load8(addr: u64) -> i32;
fn load32(addr: u64) -> i32;
fn load64(addr: u64) -> i64;
fn store_byte(addr: u64, value: i32) -> void;
Backward-compat typed names¶
Older projects may still use the pre-unified names such as i32_to_str, u32_to_str, str_to_u32, str_to_f64, array_len_i64, str_trim, or str_contains. Newer code should prefer the unified wrapper names above.