Module Symbol
A symbol identifies a constant provided by either:
- another compilation unit; or
- a top-level module.
* sym_unit
is the compilation unit containing the value. * sym_label
is the linkage name of the variable.
The label must be globally unique: two compilation units linked in the same program must not share labels.
include Identifiable.S
module T : Identifiable.Thing with type t = t
include Identifiable.Thing with type t := T.t
include Stdlib.Hashtbl.HashedType with type t := t
val hash : t -> int
A hashing function on keys. It must be such that if two keys are equal according to
equal
, then they have identical hash values as computed byhash
. Examples: suitable (equal
,hash
) pairs for arbitrary key types include- (
(=)
,Hashtbl
.hash) for comparing objects by structure (provided objects do not contain floats) - (
(fun x y -> compare x y = 0)
,Hashtbl
.hash) for comparing objects by structure and handlingStdlib.nan
correctly - (
(==)
,Hashtbl
.hash) for comparing objects by physical equality (e.g. for mutable or cyclic objects).
- (
include Stdlib.Map.OrderedType with type t := t
val compare : t -> t -> int
A total ordering function over the keys. This is a two-argument function
f
such thatf e1 e2
is zero if the keyse1
ande2
are equal,f e1 e2
is strictly negative ife1
is smaller thane2
, andf e1 e2
is strictly positive ife1
is greater thane2
. Example: a suitable ordering function is the generic structural comparison functionStdlib.compare
.
val output : Stdlib.out_channel -> t -> unit
val print : Stdlib.Format.formatter -> t -> unit
module Set : Identifiable.Set with module T := T
module Map : Identifiable.Map with module T := T
module Tbl : Identifiable.Tbl with module T := T
val of_variable : Variable.t -> t
val of_global_linkage : Compilation_unit.t -> Linkage_name.t -> t
val import_for_pack : pack:Compilation_unit.t -> t -> t
val compilation_unit : t -> Compilation_unit.t
val label : t -> Linkage_name.t
val print_opt : Stdlib.Format.formatter -> t option -> unit
val compare_lists : t list -> t list -> int