tomo/stdlib
2024-11-21 13:00:53 -05:00
..
arrays.c Add RNGs to the language 2024-11-03 22:37:48 -05:00
arrays.h Add RNGs to the language 2024-11-03 22:37:48 -05:00
bools.c Rename from_text() to parse() 2024-11-09 15:11:11 -05:00
bools.h Rename from_text() to parse() 2024-11-09 15:11:11 -05:00
bytes.c Go back to stringifying integers/num32s/bytes without the type 2024-11-19 13:41:52 -05:00
bytes.h Add Byte.hex() 2024-11-05 15:33:08 -05:00
c_strings.c Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
c_strings.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
chacha.h Add RNGs to the language 2024-11-03 22:37:48 -05:00
channels.c Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
channels.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
datatypes.h Rename datetime -> moment 2024-11-17 14:49:03 -05:00
files.c Fix issue with non-ID chars in filenames 2024-10-10 01:09:17 -04:00
files.h Fix issue with non-ID chars in filenames 2024-10-10 01:09:17 -04:00
functiontype.c Fix up some GCC compiler flag options for LTO and inlining 2024-10-29 23:14:31 -04:00
functiontype.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
integers.c Go back to stringifying integers/num32s/bytes without the type 2024-11-19 13:41:52 -05:00
integers.h Rename from_text() to parse() 2024-11-09 15:11:11 -05:00
memory.c Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
memory.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
metamethods.c Fix up some GCC compiler flag options for LTO and inlining 2024-10-29 23:14:31 -04:00
metamethods.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
moments.c Rename datetime -> moment 2024-11-17 14:49:03 -05:00
moments.h Rename datetime -> moment 2024-11-17 14:49:03 -05:00
nums.c Go back to stringifying integers/num32s/bytes without the type 2024-11-19 13:41:52 -05:00
nums.h Rename from_text() to parse() 2024-11-09 15:11:11 -05:00
optionals.c Add NULL as a syntax for null values. 2024-11-21 13:00:53 -05:00
optionals.h Rename datetime -> moment 2024-11-17 14:49:03 -05:00
paths.c Rename datetime -> moment 2024-11-17 14:49:03 -05:00
paths.h Rename datetime -> moment 2024-11-17 14:49:03 -05:00
patterns.c Bugfix for fixed-size integer ranges 2024-11-09 16:55:44 -05:00
patterns.h Bugfix for fixed-size integer ranges 2024-11-09 16:55:44 -05:00
pointers.c Tweak behavior for printing recursive structures 2024-11-19 15:45:33 -05:00
pointers.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
ranges.c Introduce a Match struct to represent pattern matching results, which 2024-11-09 16:27:54 -05:00
ranges.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
README.md Add README for navigating stdlib 2024-09-18 01:20:14 -04:00
rng.c Minor code cleanup 2024-11-04 13:06:11 -05:00
rng.h Add RNGs to the language 2024-11-03 22:37:48 -05:00
shell.c Move unistr header out of tomo header 2024-10-25 14:05:07 -04:00
shell.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
siphash-internals.h Fix header inline functions to use extern inline and some GCC magic 2024-10-30 13:59:15 -04:00
siphash.c Fix up some GCC compiler flag options for LTO and inlining 2024-10-29 23:14:31 -04:00
siphash.h Fix up some compiler flags around floating point numbers so they work 2024-10-03 14:19:23 -04:00
stdlib.c Introduce a Match struct to represent pattern matching results, which 2024-11-09 16:27:54 -05:00
stdlib.h Remove unused args for end_test() 2024-10-31 01:30:12 -04:00
tables.c Fix up some GCC compiler flag options for LTO and inlining 2024-10-29 23:14:31 -04:00
tables.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
text.c Add Text.at(i) for getting a single cluster 2024-11-19 13:27:27 -05:00
text.h Add Text.at(i) for getting a single cluster 2024-11-19 13:27:27 -05:00
threads.c Add RNGs to the language 2024-11-03 22:37:48 -05:00
threads.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
tomo.h Rename datetime -> moment 2024-11-17 14:49:03 -05:00
types.c Simplify enum/struct codegen by using reusable general-purpose 2024-10-08 13:35:18 -04:00
types.h Fix up some GCC compiler flag options for LTO and inlining 2024-10-29 23:14:31 -04:00
util.c Move USE_COLOR into stdlib 2024-09-18 01:08:36 -04:00
util.h Fixes for 'if' blocks with nested 'else if' that declare variables 2024-11-12 00:04:56 -05:00

Tomo Standard Library

This directory contains all of the standard library functionality that is built into each Tomo program. It has all the logic for core datastructures as well as some common functionality.

Core Functions

Core Data Types