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

@ -1809,7 +1809,7 @@ impl<'a> Builtin<'a> {
pub const STR_WORDS: u32 = 3;
pub const LIST_WORDS: u32 = 3;
/// Layout of collection wrapper for List and Str - a struct of (pointer, length, capacity).
/// Layout of collection wrapper for List, Str, Dict, and Set - a struct of (pointer, length, capacity).
pub const WRAPPER_PTR: u32 = 0;
pub const WRAPPER_LEN: u32 = 1;
pub const WRAPPER_CAPACITY: u32 = 2;