c49b8b285e6deaa4e53276088bfe5ec804da6cfe
[bpt/coccinelle.git] / bundles / menhirLib / menhir-20120123 / src / patricia.mli
1 (**************************************************************************)
2 (* *)
3 (* Menhir *)
4 (* *)
5 (* François Pottier, INRIA Rocquencourt *)
6 (* Yann Régis-Gianas, PPS, Université Paris Diderot *)
7 (* *)
8 (* Copyright 2005-2008 Institut National de Recherche en Informatique *)
9 (* et en Automatique. All rights reserved. This file is distributed *)
10 (* under the terms of the Q Public License version 1.0, with the change *)
11 (* described in file LICENSE. *)
12 (* *)
13 (**************************************************************************)
14
15 (* This is an implementation of Patricia trees, following Chris Okasaki's paper at the 1998 ML Workshop in Baltimore.
16 Both big-endian and little-endian trees are provided. Both sets and maps are implemented on top of Patricia
17 trees. *)
18
19 module Little : GMap.S with type key = int
20
21 module Big : GMap.S with type key = int
22