Skip to main content

Module value

Module value 

Source

Structs§

ObjectArray
A GC-traced mutable array of Values (backs object-array).
PrintValue
A wrapper for printing a Value non-readably (for str, println).
TypeInstance
A record or reify instance. type_tag identifies the concrete type; fields holds the key/value pairs (keyword → value).

Enums§

MapValue
A map value: either a small array-map or a HAMT-based hash-map.
SetValue
A set value, either a hash set or a sorted set.
Value
The central runtime type: every Clojure value is a Value.

Functions§

pr_str
Print a value. readably = true quotes strings and escapes chars.