X-Git-Url: http://git.nguyen.vg/gitweb/?p=tatoo.git;a=blobdiff_plain;f=src%2Fnode_list.ml;fp=src%2Fnode_list.ml;h=0000000000000000000000000000000000000000;hp=1856bb87fa88e90d377aa6e3e5713ee4d9f8adeb;hb=3b9dbcd9318dba41999dc6cc43093edbe5bc4c5d;hpb=05af95627d36110724ec6a2a6439c4842a228d19 diff --git a/src/node_list.ml b/src/node_list.ml deleted file mode 100644 index 1856bb8..0000000 --- a/src/node_list.ml +++ /dev/null @@ -1,37 +0,0 @@ -(***********************************************************************) -(* *) -(* TAToo *) -(* *) -(* Kim Nguyen, LRI UMR8623 *) -(* Université Paris-Sud & CNRS *) -(* *) -(* Copyright 2010-2013 Université Paris-Sud and Centre National de la *) -(* Recherche Scientifique. All rights reserved. This file is *) -(* distributed under the terms of the GNU Lesser General Public *) -(* License, with the special exception on linking described in file *) -(* ../LICENSE. *) -(* *) -(***********************************************************************) - -module type S = - sig - type node - type t - type iterator - - val create : unit -> t - val add : node -> t -> unit - val push_front : node -> t -> unit - val push_back : node -> t -> unit - val pop : t -> node - val append : t -> t -> t - val iter : (node -> unit) -> t -> unit - val length : t -> int - val is_empty : t -> bool - val head : t -> iterator - val last : t -> iterator - val next : iterator -> iterator - val value : iterator -> node - val finished : iterator -> bool - val copy : t -> t - end