blob: 247f4cdf56c23bb48ed06c30dd6cb02af8284187 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
(* Operations on internal representations of values *)
type t
external repr : 'a -> t = "%identity"
external magic : 'a -> 'b = "%identity"
external is_block : t -> bool = "obj_is_block"
external tag : t -> int = "obj_tag"
external size : t -> int = "%array_length"
external field : t -> int -> t = "%array_unsafe_get"
external set_field : t -> int -> t -> unit = "%array_unsafe_set"
external new_block : int -> int -> t = "obj_block"
|