80204d24ac489d627e852c857998e2a3392c0da1
[tatoo.git] / src / utils / hlist.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 (*
17   Time-stamp: <Last modified on 2013-03-13 18:30:59 CET by Kim Nguyen>
18 *)
19
20 include module type of Hlist_sig
21
22 module Make (H : Hcons.Abstract) : S with type elt = H.t
23 (** Builds an implementation of hashconsed lists of hashconsed elements.
24     See {!Hcons.Make}.
25 *)
26
27 module Weak (H : Hcons.Abstract) : S with type elt = H.t
28 (** Builds an implementation of hashconsed lists of hashconsed elements
29     with weak internal storage. See {!Hcons.Weak}.
30 *)