aboutsummaryrefslogtreecommitdiff
path: root/builtins
AgeCommit message (Expand)Author
2024-08-19Add .text_content as a field on DSLs instead of a methodBruce Hill
2024-08-19Fix some numeric precision issues with how nums are printedBruce Hill
2024-08-18Update channel API to take a Where parameterBruce Hill
2024-08-18Add Channel:peek()Bruce 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-18Add array:first(predicate:func(x:&T)->Bool)->@%T?Bruce Hill
2024-08-18Fix array indexingBruce Hill
2024-08-18Add primality testing and next_prime()/prev_prime()Bruce Hill
2024-08-17Make small integer constants actually constantBruce 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-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-13Make biggest int semantically meaningfulBruce Hill
2024-08-13Fix some edge casesBruce Hill
2024-08-13Create inlined fast versions of integer opsBruce Hill
2024-08-13Fix channelsBruce Hill
2024-08-13Fix issue with integer comparisonsBruce Hill
2024-08-13Fix int hashesBruce Hill
2024-08-13Fix rangesBruce Hill
2024-08-13FixesBruce Hill
2024-08-13Fix Int->Num promotionsBruce Hill
2024-08-13Get rid of slow_* int functionsBruce Hill
2024-08-13Fixing up more stuffBruce Hill
2024-08-13Fixing up integersBruce Hill
2024-08-13More fixesBruce Hill
2024-08-13Remove debug printsBruce Hill
2024-08-13BugfixesBruce Hill
2024-08-13Partially working first draft of bigintsBruce Hill
2024-08-12Fix some COW bugs for arrays/tables/setsBruce Hill
2024-08-11Support channels with maximum sizeBruce Hill
2024-08-11Add channels and threadsBruce Hill
2024-08-10Bugfix for Text:split()Bruce Hill
2024-08-10Add array:counts()Bruce Hill
2024-08-10For tables, deprecate support for square bracket indexing and .defaultBruce Hill
2024-08-10Make Num32/Num64 literals explicitly typed to aid in macros usingBruce Hill
2024-08-10Add Sets to the languageBruce Hill
2024-08-10Bugfix for table literals with duplicated keysBruce Hill