aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib
AgeCommit message (Expand)Author
2025-11-15Fix for potential issue with codepoint namesBruce Hill
2025-11-15Bugfix for int parsingBruce Hill
2025-11-15Make EMPTY_TEXT into a macroBruce Hill
2025-11-09Cut out a level of pointer indirection for integers by using underlyingBruce Hill
2025-10-25Compatibility fixesBruce Hill
2025-10-20Fix some Num issues caused by refactorBruce Hill
2025-10-20Clean up macro codeBruce Hill
2025-10-20Deduplicate Num code using the same templating technique as integersBruce Hill
2025-10-19Fix signed comparison issuesBruce Hill
2025-10-19Space out imports so they order correctlyBruce Hill
2025-10-19Move integer implementation details into separate header/C files, backedBruce Hill
2025-10-18Don't skip backslash for args with `\-` after the `--`Bruce Hill
2025-10-18Allow passing arguments with leading '-' using a backslashBruce Hill
2025-10-18Improved CLI parsing and add CString.join()Bruce Hill
2025-10-18Better error messages, especially for wrong enum tagsBruce Hill
2025-10-18Support passing pointers to CLI argsBruce Hill
2025-10-18Update docsBruce Hill
2025-10-18Support parsing enums and cstrings and structsBruce Hill
2025-10-18Lazily initialize argsBruce Hill
2025-10-18Fix '--' arg parsingBruce Hill
2025-10-18Rework tomo CLI argsBruce Hill
2025-10-18Overhaul of CLI arg parsing logicBruce Hill
2025-10-13Minor speculative fixes to be extra cautiousBruce Hill
2025-10-13Minor correctness fixes for fpconvBruce Hill
2025-10-12Minor cleanup to ask()Bruce Hill
2025-10-12Fix memory leaksBruce Hill
2025-10-12More code cleanupsBruce Hill
2025-10-12Code cleanup and fixing minor issuesBruce Hill
2025-10-11Improvements to set support and updating docsBruce Hill
2025-10-11Make `{a,b,c}` shorthand for `{a:Empty(), b:Empty(), c:Empty()}` andBruce Hill
2025-10-11Add optional empty typeBruce Hill
2025-10-11Rename pathtype enum valuesBruce Hill
2025-10-11Bugfix for optional paths and converting path type into an actual enumBruce Hill
2025-10-11Added Empty() structBruce Hill
2025-10-05Fix a bunch of issues with optional typesBruce Hill
2025-10-05Add serialization and deserialization by coercion to/from [Byte]Bruce Hill
2025-10-04When reading a file by line, skip lines with invalid UTF8 instead ofBruce Hill
2025-10-03Fix for optional CLI argumentsBruce Hill
2025-10-02Merge branch 'zero-nones' into devBruce Hill
2025-10-01Force a GC sweep when we run out of file handles to trigger cleanup ofBruce Hill
2025-10-01For structs and fixed-size ints, use `.has_value` instead of `.is_none`Bruce Hill
2025-10-01Fix up some more none casesBruce Hill
2025-10-01Convert to using more zero values for `none`Bruce Hill
2025-09-21Deprecate binary ops (other than ++) for tables. Instead use properBruce Hill
2025-09-21Use colons instead of '=' for tables (e.g. {1: 2})Bruce Hill
2025-09-21Deprecate `>> x ... = val` form of doctests and rename them to 'debugdoctests-to-debuglogBruce Hill
2025-09-21Deprecate more set stuffBruce Hill
2025-09-21Deprecate setsBruce Hill
2025-09-13Merge branch 'optional-list-indexing' into devBruce Hill
2025-09-09Minor cleanupsBruce Hill