Silt Standard Library Reference
Complete API reference for every built-in function in silt.
Module Index
| Module | Description |
|---|---|
| Globals | print, println, panic, variant constructors, type descriptors |
| list | Create, transform, query, and iterate over ordered collections |
| string | Split, join, search, transform, and classify strings |
| map | Lookup, insert, merge, and iterate over key-value maps |
| set | Create, combine, query, and iterate over unordered unique collections |
| int / float | Parse, convert, and compare integers and floats |
| result / option | Transform and query Result(a, e) and Option(a) values |
| io / fs / env | File I/O, stdin, command-line args, debug inspection, filesystem ops, env vars |
| test | Assertions for test scripts |
| regex | Match, find, split, replace, and capture with regular expressions |
| json | Parse JSON into typed records/maps, serialize values to JSON |
| math | Trigonometry, logarithms, exponentiation, random, and constants |
| channel / task | Bounded channels for concurrent task communication, spawn and join tasks |
| time | Dates, times, instants, durations, formatting, parsing, and arithmetic |
| http | HTTP client and server |