tomo/stdlib
2024-10-27 20:45:10 -04:00
..
arrays.c Reduce padding needed for optional types and clean up some redundant 2024-10-08 21:10:36 -04:00
arrays.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
bools.c Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
bools.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
bytes.c Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
bytes.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04: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
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 Add DateTime 2024-09-29 20:06:09 -04:00
datetime.c Update DateTime API to have separate methods for getting each component 2024-10-27 18:41:00 -04:00
datetime.h Update DateTime API to have separate methods for getting each component 2024-10-27 18:41:00 -04: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 Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
functiontype.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
integers.c Fix up some compiler flags around floating point numbers so they work 2024-10-03 14:19:23 -04:00
integers.h Fix up some compiler flags around floating point numbers so they work 2024-10-03 14:19:23 -04: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 Simplify enum/struct codegen by using reusable general-purpose 2024-10-08 13:35:18 -04:00
metamethods.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
nums.c Fix up some compiler flags around floating point numbers so they work 2024-10-03 14:19:23 -04:00
nums.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
optionals.c Reduce padding needed for optional types and clean up some redundant 2024-10-08 21:10:36 -04:00
optionals.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
paths.c Fixes for places that used Text$find() 2024-10-27 20:45:10 -04:00
paths.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
patterns.c Finish deprecating stack refs with & 2024-10-27 20:35:30 -04:00
patterns.h Finish deprecating stack refs with & 2024-10-27 20:35:30 -04:00
pointers.c Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
pointers.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
ranges.c Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04: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
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 Rename builtins/ -> stdlib/ 2024-09-13 20:18:08 -04:00
siphash.c Fix up some compiler flags around floating point numbers so they work 2024-10-03 14:19:23 -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 Fixes for places that used Text$find() 2024-10-27 20:45:10 -04:00
stdlib.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
tables.c Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
tables.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
text.c Move unistr header out of tomo header 2024-10-25 14:05:07 -04:00
text.h Move unistr header out of tomo header 2024-10-25 14:05:07 -04:00
threads.c Add an include 2024-10-27 12:58:37 -04:00
threads.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
tomo.h Minor imports cleanup 2024-10-25 14:13:24 -04:00
types.c Simplify enum/struct codegen by using reusable general-purpose 2024-10-08 13:35:18 -04:00
types.h Simplify enum/struct codegen by using reusable general-purpose 2024-10-08 13:35:18 -04:00
util.c Move USE_COLOR into stdlib 2024-09-18 01:08:36 -04:00
util.h Move Match() to the right place 2024-09-18 01:11:50 -04: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