sig
  module KList :
    sig
      type 'a t = 'CCKList.t
      type 'a stored = 'CCKList.t
      val singleton : '-> 'a t
      val map : ('-> 'b) -> 'a t -> 'b t
      val expand : ('-> 'b t) -> 'a t -> 'b t
      val iter : ('-> unit) -> 'a t -> unit
      val fold : ('-> '-> '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
    end
end