Merge remote-tracking branch 'origin/trunk' into str-fromUtf8

This commit is contained in:
Folkert 2021-02-21 15:25:36 +01:00
commit 57b78dde06
156 changed files with 19265 additions and 10809 deletions

View file

@ -12,6 +12,7 @@ pub enum LowLevel {
StrCountGraphemes,
StrFromInt,
StrFromUtf8,
StrFromFloat,
ListLen,
ListGetUnsafe,
ListSet,
@ -25,10 +26,26 @@ pub enum LowLevel {
ListPrepend,
ListJoin,
ListMap,
ListMapWithIndex,
ListKeepIf,
ListWalk,
ListWalkBackwards,
ListSum,
ListKeepOks,
ListKeepErrs,
DictSize,
DictEmpty,
DictInsert,
DictRemove,
DictContains,
DictGetUnsafe,
DictKeys,
DictValues,
DictUnion,
DictIntersection,
DictDifference,
DictWalk,
SetFromList,
NumAdd,
NumAddWrap,
NumAddChecked,
@ -67,4 +84,5 @@ pub enum LowLevel {
And,
Or,
Not,
Hash,
}