deprecate CCKList in favor of the standard Seq

see #257
This commit is contained in:
Simon Cruanes 2019-11-11 19:59:17 -06:00
parent 27fb393698
commit e106432e21

View file

@ -1,7 +1,15 @@
(* This file is free software, part of containers. See file "license" for more details. *) (* This file is free software, part of containers. See file "license" for more details. *)
(** {1 Continuation List} *) (** {1 Continuation List}
@deprecated since NEXT_RELEASE, you should use the standard {b Seq} instead.
See {{: https://github.com/c-cube/oseq/} oseq} for similar combinators.
*)
[@@@ocaml.deprecated "use Seq instead"]
type 'a sequence = ('a -> unit) -> unit type 'a sequence = ('a -> unit) -> unit
type 'a gen = unit -> 'a option type 'a gen = unit -> 'a option