aboutsummaryrefslogtreecommitdiff
path: root/test/tables.tm
AgeCommit message (Collapse)Author
2024-09-16Deprecate :or_else()/:or_fail()/:or_exit() in favor of the `or` operatorBruce Hill
2024-09-12Table:get() now uses optional values instead of default or failure modesBruce Hill
2024-09-11Add optional typesBruce Hill
2024-08-18Deprecate `#` operator in favor of .length and fix up some issuesBruce Hill
2024-08-18Improved syntax for dollar-string literalsBruce Hill
2024-08-10For tables, deprecate support for square bracket indexing and .defaultBruce Hill
values, replacing them with a `:bump()` function for tables with numeric values. This means that counters can be implemented easily without the need to mask complexity.
2024-08-10Add Sets to the languageBruce Hill
2024-08-08Change table removal function to use values instead of referencesBruce Hill
2024-04-30Improved syntax for optionalsBruce Hill
2024-04-28Syntax tweak: use ':' for blocksBruce Hill
2024-04-13Change table syntax to {key:value} instead of {key=>value}Bruce Hill
2024-04-12Introducing the main() functionBruce Hill
2024-04-02Add comparison operator <> and array method to sort by a customBruce Hill
comparison function
2024-03-17Add tests for nested comprehensionsBruce Hill
2024-03-17Improve comprehensions for both arrays and tablesBruce Hill
2024-03-03Rename Str -> TextBruce Hill
2024-03-03Definitively go with "Int" and "Num" over "Int64" and "Num64", plus addBruce Hill
Int__bits()
2024-02-25Add test for table iterationBruce Hill
2024-02-25Add tests for '#' on collectionsBruce Hill
2024-02-25Table field access for .keys, .values, .default, .fallbackBruce Hill