ocaml_sys/
tag.rs

1//! Contains defintions for OCaml tags
2
3/// Used to store OCaml value tags, which are used to determine the underlying type of values
4pub type Tag = u8;
5
6pub const FORWARD: Tag = 250;
7pub const INFIX: Tag = 249;
8pub const OBJECT: Tag = 248;
9pub const CLOSURE: Tag = 247;
10pub const LAZY: Tag = 246;
11pub const ABSTRACT: Tag = 251;
12pub const NO_SCAN: Tag = 251;
13pub const STRING: Tag = 252;
14pub const DOUBLE: Tag = 253;
15pub const DOUBLE_ARRAY: Tag = 254;
16pub const CUSTOM: Tag = 255;