Expand description
String generation and transformation nodes.
Structs§
- CharBuf
- Generate a deterministic string of a given length from a seed and character set.
- Combinations
- Map a u64 input to a deterministic string by interpreting it as a multi-positional choice over the pattern’s charsets.
- File
Line At - Cycle-time line lookup over a pre-loaded text file.
filenameis read at construction time via#[poly_const]; the cycle input selects a line modulo the total count. - Hashed
Uuid - Generate a deterministic UUID v4 string from a u64 seed. Same seed always produces the same UUID; the hash output fills the 128 UUID bits with version (4) and variant (RFC 4122) bits set per spec.
- Number
ToWords - Convert a u64 to its English word representation.
- Parsed
Combinations - Map a u64 to a formatted string via mixed-radix indexing into character sets.
- StrConcat
- Concatenate N wire inputs into a single Str output.
- StrLower
- Fold a string to lowercase (
str.to_lowercase()semantics). - StrUpper
- Fold a string to uppercase (
str.to_uppercase()semantics).
Enums§
- Segment
- One piece of a combinations pattern.