aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2024-11-05Add Byte.hex()Bruce Hill
2024-11-05Fix up old-style reducersBruce Hill
2024-11-05Deprecate bit-width integer/num literals in favor of using typeBruce Hill
2024-11-04Be much more permissive about using integer literals for fixed-size intsBruce Hill
2024-11-04Minor code cleanupBruce Hill
2024-11-04Fix for blocking readsBruce Hill
2024-11-04Add base64 libBruce Hill
2024-11-04Fix for optional langsBruce Hill
2024-11-04Update text API to use optional returns when applicableBruce Hill
2024-11-04Add some missing functionality for BytesBruce Hill
2024-11-03RNG seed should be non-optionalBruce Hill
2024-11-03Fix up test to use RNGsBruce Hill
2024-11-03Add RNGs to the languageBruce Hill
2024-11-03Update Path:read_bytes() API to take a byte countBruce Hill
2024-11-03Fix per-thread RNGBruce Hill
2024-11-03Make Int.random() use thread-local stateBruce Hill
2024-11-03Use an RNG parameter for array:random(), array:shuffle(),Bruce Hill
2024-11-03Clean up behavior and syntax for unsigned bit shifts (<<<, >>>)Bruce Hill
2024-11-03Add unsigned integer shiftsBruce Hill
2024-11-03Add Int64:unsigned_left_shift() and :unsigned_right_shift()Bruce Hill
2024-11-03Better error messaging for binops and support for bit shifting by anBruce Hill
2024-11-03Add wrapping plus/minus for fixed-size integersBruce Hill
2024-11-03Fix error messageBruce Hill
2024-11-03Add a `repeat` keywordBruce Hill
2024-11-03Minor fixBruce Hill
2024-11-02Support reductions for comparison operators like == and <Bruce Hill
2024-11-02Change reducers to use (OP: ...) syntax and return an optional valueBruce Hill
2024-11-02Update headerBruce Hill
2024-11-02Make Text:find() return an optional intBruce Hill
2024-10-31Remove unused args for end_test()Bruce Hill
2024-10-31Tweak doctest output so it outputs source infoBruce Hill
2024-10-30Fix type members not appearing in headers for declared valuesBruce Hill
2024-10-30Fix for methods not appearing in headersBruce Hill
2024-10-30Make compiler output spam a little dimmerBruce Hill
2024-10-30Organize typedef headers so the typedefs come before the namespaceBruce Hill
2024-10-30Fix header inline functions to use `extern inline` and some GCC magicBruce Hill
2024-10-30Bugfix for empty struct typeinfosBruce Hill
2024-10-30Remove redundant warningsBruce Hill
2024-10-29Fix up some GCC compiler flag options for LTO and inliningBruce Hill
2024-10-29Add -Werror to tomo compile flagsBruce Hill
2024-10-29Add file globbingBruce Hill
2024-10-28Add PATCHBruce Hill
2024-10-27Update docs to reflect deprecation of "&" stack referencesBruce Hill
2024-10-27Fix up examples to no longer use '&'Bruce Hill
2024-10-27Fixes for places that used Text$find()Bruce Hill
2024-10-27Disallow mutation of read-only viewsBruce Hill
2024-10-27Finish deprecating stack refs with &Bruce Hill
2024-10-27Deprecate "&" for stack referencesBruce Hill
2024-10-27Remove an unnecessary ARRAY_COPY()Bruce Hill
2024-10-27Bugfix: for array:find() and array:sorted() and array:binary_search(),Bruce Hill