aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2024-08-18Added a .length field to arrays/sets/tables, added a .max_size field toBruce Hill
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
2024-08-18Fix array ++= itemBruce Hill
2024-08-17Handle demotion of integers when we know what the expected type ought toBruce Hill
2024-08-17Disallow accessing type members that start with underscores unlessBruce Hill
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
2024-08-17Support semicolon in `{:K:V; ...}`Bruce Hill
2024-08-17Remove 'const' where it caused problemsBruce Hill
2024-08-17Allow for top-level or namespace-level variables that are initializedBruce Hill
2024-08-16Change division and modulus to use euclidean division, plus fix up a fewBruce Hill
2024-08-16Add Bool:random(p=0.5)Bruce Hill
2024-08-16More fixes for intsBruce Hill
2024-08-16BugfixBruce Hill
2024-08-16Check for compile-time constant integers that require heap allocations.Bruce Hill
2024-08-16For cached functions with no arguments, use a static var instead of aBruce Hill
2024-08-16Update docs a bitBruce Hill
2024-08-15More helpful error message for table indexingBruce Hill
2024-08-15Add binary search testBruce Hill
2024-08-15Bugfix for closuresBruce Hill
2024-08-15Add array:find()Bruce Hill
2024-08-15Add method for array:remove_item(item) and renameBruce Hill
2024-08-15Add array:shuffled() and checks for array insertionBruce Hill
2024-08-15Bugfix for array:insert()Bruce Hill
2024-08-15Add binary search method to arraysBruce Hill
2024-08-14Fix up type conversions with ints and numsBruce Hill
2024-08-13Tweak implementations of math opsbigintsBruce Hill
2024-08-13Add Int:sqrt()Bruce Hill
2024-08-13Support ^ exponentiation for integersBruce Hill
2024-08-13Integers can have heap memoryBruce Hill
2024-08-13Support more binopsBruce Hill
2024-08-13Improvements to replBruce Hill
2024-08-13Make biggest int semantically meaningfulBruce Hill
2024-08-13Fix some edge casesBruce Hill
2024-08-13Create inlined fast versions of integer opsBruce Hill