From e106432e211f725abc09a96a8a4653762b90735e Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Mon, 11 Nov 2019 19:59:17 -0600 Subject: [PATCH] deprecate CCKList in favor of the standard Seq see #257 --- src/iter/CCKList.mli | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/iter/CCKList.mli b/src/iter/CCKList.mli index 1e95cd03..e6a83910 100644 --- a/src/iter/CCKList.mli +++ b/src/iter/CCKList.mli @@ -1,7 +1,15 @@ (* 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 gen = unit -> 'a option