1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//! built-in type

pub struct Negative<T>(pub T);

pub struct Bytes<T>(pub T);

pub struct UncheckedStr<T>(pub T);

pub struct Array<T>(pub T);

pub struct Map<T>(pub T);

pub struct Tag<T>(pub u64, pub T);

pub struct Simple(pub u8);

pub struct Null;

pub struct Undefined;

pub struct F16(pub u16);