Merge remote-tracking branch 'origin/trunk' into assoc-list-dict

This commit is contained in:
Folkert 2022-07-13 20:44:28 +02:00
commit 5763248b44
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
41 changed files with 949 additions and 131 deletions

View file

@ -29,6 +29,7 @@ pub enum LowLevel {
StrReserve,
StrAppendScalar,
StrGetScalarUnsafe,
StrGetCapacity,
ListLen,
ListWithCapacity,
ListReserve,
@ -46,6 +47,7 @@ pub enum LowLevel {
ListDropAt,
ListSwap,
ListIsUnique,
ListGetCapacity,
NumAdd,
NumAddWrap,
NumAddChecked,
@ -246,7 +248,9 @@ map_symbol_to_lowlevel! {
StrAppendScalar <= STR_APPEND_SCALAR_UNSAFE,
StrGetScalarUnsafe <= STR_GET_SCALAR_UNSAFE,
StrToNum <= STR_TO_NUM,
StrGetCapacity <= STR_CAPACITY,
ListLen <= LIST_LEN,
ListGetCapacity <= LIST_CAPACITY,
ListWithCapacity <= LIST_WITH_CAPACITY,
ListReserve <= LIST_RESERVE,
ListIsUnique <= LIST_IS_UNIQUE,