some "status: experimental" annotations on new modules

This commit is contained in:
Simon Cruanes 2015-02-27 14:31:17 +01:00
parent 125484a9c4
commit c5354c792e
4 changed files with 8 additions and 0 deletions

View file

@ -25,6 +25,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
(** {1 Maps with Heterogeneous Values} (** {1 Maps with Heterogeneous Values}
{b status: experimental}
@since NEXT_RELEASE *) @since NEXT_RELEASE *)
type 'a injection type 'a injection

View file

@ -23,6 +23,8 @@
Useful for IO, or as a general-purpose alternative to {!Queue} when Useful for IO, or as a general-purpose alternative to {!Queue} when
batch operations are needed. batch operations are needed.
{b status: experimental}
@since NEXT_RELEASE @since NEXT_RELEASE
*) *)

View file

@ -30,6 +30,8 @@ Functional streams, that is, lazy lists whose nodes are behind a
Lwt.t future. Such as list never mutates, it can be safely traversed Lwt.t future. Such as list never mutates, it can be safely traversed
several times, but might eat memory. several times, but might eat memory.
{b status: experimental}
@since NEXT_RELEASE *) @since NEXT_RELEASE *)
type 'a t = [ `Nil | `Cons of 'a * 'a t ] Lwt.t type 'a t = [ `Nil | `Cons of 'a * 'a t ] Lwt.t

View file

@ -50,6 +50,8 @@ Lwt_io.with_file ~mode:Lwt_io.output "/tmp/foo"
);; );;
]} ]}
{b status: experimental}
@since NEXT_RELEASE @since NEXT_RELEASE
*) *)