Merge remote-tracking branch 'origin/trunk' into builtins-list-take-last

This commit is contained in:
Folkert 2021-11-09 16:18:19 +01:00
commit 94efbd0e95
16 changed files with 415 additions and 8 deletions

View file

@ -48,6 +48,7 @@ pub enum LowLevel {
ListDropAt,
ListSwap,
ListAny,
ListFindUnsafe,
DictSize,
DictEmpty,
DictInsert,
@ -227,6 +228,7 @@ macro_rules! higher_order {
| ListKeepErrs
| ListSortWith
| ListAny
| ListFindUnsafe
| DictWalk
};
}
@ -261,6 +263,7 @@ impl LowLevel {
ListKeepErrs => 1,
ListSortWith => 1,
ListAny => 1,
ListFindUnsafe => 1,
DictWalk => 2,
}
}