Sarek_interp.Sarek_value
type value =
| VInt32 of int32
| VInt64 of int64
| VFloat32 of float
| VFloat64 of float
| VBool of bool
| VUnit
| VArray of value array
| VRecord of string * value array
type_name, fields
| VVariant of string * int * value list
type, tag, args
Type-safe runtime value representation for the interpreter.
val value_type_name : value -> string
Get human-readable type name for a value