aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-08-19Document `deg`Bruce Hill
2024-08-19Update test to reflect new numeric precisionBruce Hill
2024-08-19Support demoting int literalsBruce Hill
2024-08-19Fix some numeric precision issues with how nums are printedBruce Hill
2024-08-19Fix precision of compiled numbersBruce Hill
2024-08-19Add -deg suffix: `90deg` for specifying degrees. Also fixed percentBruce Hill
suffix
2024-08-19Add test for importing initialized valuesBruce Hill
2024-08-19Make sure imported/used modules are initialized properlyBruce Hill
2024-08-19Update docsBruce Hill
2024-08-19Add colonsBruce Hill
2024-08-19Update docsBruce Hill
2024-08-19Move docs into one folderBruce Hill
2024-08-18Update channel API to take a Where parameterBruce Hill
2024-08-18Add Channel:peek()Bruce Hill
2024-08-18Update API for give/getBruce Hill
2024-08-18Rename push/pop to give/get, since it's not stack-orderedBruce Hill
2024-08-18Add Int:clamped() and Num:clamped()Bruce Hill
2024-08-18Update docsBruce Hill
2024-08-18Document array:first()Bruce Hill
2024-08-18Add array:first(predicate:func(x:&T)->Bool)->@%T?Bruce Hill
2024-08-18Update docsBruce Hill
2024-08-18Update docsBruce Hill
2024-08-18Update indexBruce Hill
2024-08-18More docsBruce Hill
2024-08-18Add `enum.tag` as a way to do a boolean test for whether a value has aBruce Hill
particular tag or not
2024-08-18Deprecate `#` operator in favor of .length and fix up some issuesBruce Hill
2024-08-18Added a .length field to arrays/sets/tables, added a .max_size field toBruce Hill
channels, and updated the API
2024-08-18Update docsBruce Hill
2024-08-18Update array docsBruce Hill
2024-08-18Update docsBruce Hill
2024-08-18Add README for APIBruce Hill
2024-08-18API documentationBruce Hill
2024-08-18Add API docsBruce Hill
2024-08-18Remove duplicated lineBruce Hill
2024-08-18Remove some num functionsBruce Hill
2024-08-18Fix array indexingBruce Hill
2024-08-18Add primality testing and next_prime()/prev_prime()Bruce Hill
2024-08-18Improved syntax for dollar-string literalsBruce Hill
2024-08-18Tweak test codeBruce Hill
2024-08-18Fix up some bigint logic issuesBruce Hill
2024-08-18Split BigIntType out of IntType and switch to using enums for the sizeBruce Hill
of ints/nums
2024-08-18Fix array ++= itemBruce Hill
2024-08-17Handle demotion of integers when we know what the expected type ought toBruce Hill
be and it's just a literal.
2024-08-17Disallow accessing type members that start with underscores unlessBruce Hill
you're inside the type definition.
2024-08-17Make small integer constants actually constantBruce Hill
2024-08-17Correct the logic to prevent promoting nums to ints automaticallyBruce Hill
2024-08-17Bugfix for Int64$hash() being referencedBruce Hill
2024-08-17Add table:get_or_null(key) for tables with non-null pointer values,Bruce Hill
which lets get() keep the non-null return type
2024-08-17Support semicolon in `{:K:V; ...}`Bruce Hill
2024-08-17Remove 'const' where it caused problemsBruce Hill