Implement set-theoretic operation on 2WSATA (union, intersection,
[tatoo.git] / src / qNameSet.mli
1 (***********************************************************************)
2 (*                                                                     *)
3 (*                               TAToo                                 *)
4 (*                                                                     *)
5 (*                     Kim Nguyen, LRI UMR8623                         *)
6 (*                   Université Paris-Sud & CNRS                       *)
7 (*                                                                     *)
8 (*  Copyright 2010-2012 Université Paris-Sud and Centre National de la *)
9 (*  Recherche Scientifique. All rights reserved.  This file is         *)
10 (*  distributed under the terms of the GNU Lesser General Public       *)
11 (*  License, with the special exception on linking described in file   *)
12 (*  ../LICENSE.                                                        *)
13 (*                                                                     *)
14 (***********************************************************************)
15
16 (** Implementation of sets of Qualified Names that can be finite
17     or cofinite *)
18
19 include FiniteCofinite.S with type elt = QName.t
20 include Common_sig.Printable with type t := t
21 val star : t
22 val text : t
23 val node : t
24
25 module Weak :
26 sig
27   include FiniteCofinite.S with type elt = QName.t
28   include Common_sig.Printable with type t := t
29   val star : t
30   val text : t
31   val node : t
32 end