Module LisCC.KList

module KList: Lilis.S 
  with type 'a t      = 'a CCKList.t
   and type 'a stored = 'a CCKList.t
CCKList, Persistent.

type 'a t 
type 'a stored 
val singleton : 'a -> 'a t
val map : ('a -> 'b) -> 'a t -> 'b t
val expand : ('a -> 'b t) -> 'a t -> 'b t
val iter : ('a -> unit) -> 'a t -> unit
val fold : ('b -> 'a -> 'b) -> 'b -> 'a t -> 'b
val of_list : 'a list -> 'a stored
val to_list : 'a t -> 'a list
val empty : 'a stored
val store : 'a t -> 'a stored
val gennew : 'a stored -> 'a t