Fixed bug in NextElement, improved caching
[SXSI/xpathcomp.git] / tag.mli
1 type t = int
2 type pool 
3 val tag : string -> t
4
5 val document_node : t
6 val attribute : t
7 val pcdata : t
8 val attribute_data : t
9
10
11 val init : pool -> unit
12 val to_string : t -> string
13 val compare : t -> t -> int
14 val equal : t -> t -> bool
15 val nullt : t
16
17 val dump : Format.formatter -> t -> unit
18 val check : t -> unit (* Check internal invariants *)
19   
20 (* Data structures *)
21 val hash : t -> int
22 val print : Format.formatter -> t -> unit
23