aboutsummaryrefslogtreecommitdiff
path: root/stdlib/text.c
AgeCommit message (Collapse)Author
2024-11-29Add serialization and deserializationBruce Hill
2024-11-29Change how types handle metamethodsBruce Hill
2024-11-24Rename "NULL" to "NONE"Bruce Hill
2024-11-19Add Text.at(i) for getting a single clusterBruce Hill
2024-11-09Introduce a `Match` struct to represent pattern matching results, whichBruce Hill
improves the usability of a lot of the APIs. Also bugfix some issues with ranges.
2024-11-04Update text API to use optional returns when applicableBruce Hill
2024-10-29Fix up some GCC compiler flag options for LTO and inliningBruce Hill
2024-10-25Move unistr header out of tomo headerBruce Hill
2024-09-30Rename TypeInfo -> TypeInfo_t and fix up some typeinfo codeBruce Hill
2024-09-16Quote Patterns with "|" instead of "/" when applicableBruce Hill
2024-09-16Bugfix for string escaping in printoutsBruce Hill
2024-09-15Make sure that escape sequences don't accidentally trigger the nextBruce Hill
backslash to be interpreted as an escape sequence when printing quoted text
2024-09-15Slightly improve text quoting so it outputs "a$\r\nb" instead ofBruce Hill
"a$\r$\nb"
2024-09-15Improve automatic text quoting so it minimizes escape sequences whenBruce Hill
possible.
2024-09-14Clean up pattern code to make better use of TextIter_t and fix upBruce Hill
URI/URL patterns
2024-09-13Rename builtins/ -> stdlib/Bruce Hill