You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type Arr<t> {
_data: t[],
_len: U32
};
// when t is at most 8 bytes wide, inline parts of arr
type Arr<t: Sized<(_<=8)>> {
_inline: t[4],
_heap: t[],
_len: U32
}
// bit array
type Arr<Bool> {
_data: U8[],
_bits_len: U32
};
```
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: