tomo/stdlib
2024-12-07 16:04:25 -05:00
..
arrays.c Use likely()/unlikely() macros and a few bugfixes for integers 2024-12-07 15:59:37 -05:00
arrays.h Use likely()/unlikely() macros and a few bugfixes for integers 2024-12-07 15:59:37 -05:00
bools.c Change how types handle metamethods 2024-11-29 12:55:14 -05:00
bools.h Change how types handle metamethods 2024-11-29 12:55:14 -05:00
bytes.c Change how types handle metamethods 2024-11-29 12:55:14 -05:00
bytes.h Add serialization and deserialization 2024-11-29 18:09:12 -05:00
c_strings.c Add serialization and deserialization 2024-11-29 18:09:12 -05:00
c_strings.h Change how types handle metamethods 2024-11-29 12:55:14 -05:00
chacha.h Add RNGs to the language 2024-11-03 22:37:48 -05:00
channels.c Add serialization and deserialization 2024-11-29 18:09:12 -05:00
channels.h Add serialization and deserialization 2024-11-29 18:09:12 -05:00
datatypes.h Rename datetime -> moment 2024-11-17 14:49:03 -05:00
enums.c Bugfix for enum tags 2024-11-29 18:45:44 -05:00
enums.h Add serialization and deserialization 2024-11-29 18:09:12 -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 Change how types handle metamethods 2024-11-29 12:55:14 -05:00
functiontype.h Add serialization and deserialization 2024-11-29 18:09:12 -05:00
integers.c Use likely()/unlikely() macros and a few bugfixes for integers 2024-12-07 15:59:37 -05:00
integers.h Use likely()/unlikely() macros and a few bugfixes for integers 2024-12-07 15:59:37 -05:00
memory.c Add serialization and deserialization 2024-11-29 18:09:12 -05:00
memory.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
metamethods.c Add serialization and deserialization 2024-11-29 18:09:12 -05:00
metamethods.h Add serialization and deserialization 2024-11-29 18:09:12 -05:00
moments.c Bugfixes for moments mixing up microseconds/nanoseconds, plus adding 2024-11-30 17:25:36 -05:00
moments.h Bugfixes for moments mixing up microseconds/nanoseconds, plus adding 2024-11-30 17:25:36 -05:00
nums.c Change how types handle metamethods 2024-11-29 12:55:14 -05:00
nums.h Change how types handle metamethods 2024-11-29 12:55:14 -05:00
optionals.c Rename "NONE" to "none" 2024-12-07 16:04:25 -05:00
optionals.h Add serialization and deserialization 2024-11-29 18:09:12 -05:00
paths.c Change how types handle metamethods 2024-11-29 12:55:14 -05:00
paths.h Rename datetime -> moment 2024-11-17 14:49:03 -05:00
patterns.c Change how types handle metamethods 2024-11-29 12:55:14 -05:00
patterns.h Rename "NULL" to "NONE" 2024-11-24 16:18:21 -05:00
pointers.c Add serialization and deserialization 2024-11-29 18:09:12 -05:00
pointers.h Add serialization and deserialization 2024-11-29 18:09:12 -05:00
ranges.c Change how types handle metamethods 2024-11-29 12:55:14 -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 Use likely()/unlikely() macros and a few bugfixes for integers 2024-12-07 15:59:37 -05:00
rng.h Add RNGs to the language 2024-11-03 22:37:48 -05:00
shell.c Change how types handle metamethods 2024-11-29 12:55:14 -05: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 Support single-argument enums 2024-11-30 17:43:02 -05:00
stdlib.h Remove unused args for end_test() 2024-10-31 01:30:12 -04:00
structs.c Add serialization and deserialization 2024-11-29 18:09:12 -05:00
structs.h Add serialization and deserialization 2024-11-29 18:09:12 -05:00
tables.c Use likely()/unlikely() macros and a few bugfixes for integers 2024-12-07 15:59:37 -05:00
tables.h Improvements and fixes for assigning to table keys 2024-12-06 15:18:25 -05:00
text.c Use likely()/unlikely() macros and a few bugfixes for integers 2024-12-07 15:59:37 -05:00
text.h Add serialization and deserialization 2024-11-29 18:09:12 -05:00
threads.c Add serialization and deserialization 2024-11-29 18:09:12 -05:00
threads.h Change how types handle metamethods 2024-11-29 12:55:14 -05:00
tomo.h Change how types handle metamethods 2024-11-29 12:55:14 -05:00
types.c Tweak to how 'Type' appears as a type 2024-11-29 20:04:44 -05:00
types.h Fix Type:as_text() 2024-11-29 20:03:20 -05:00
util.c Move USE_COLOR into stdlib 2024-09-18 01:08:36 -04:00
util.h Use likely()/unlikely() macros and a few bugfixes for integers 2024-12-07 15:59:37 -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