note that ccfun_vec is really experimental

This commit is contained in:
Simon Cruanes 2018-02-24 18:38:13 -06:00
parent 5ebebf4fd7
commit 0fb25fac26
2 changed files with 5 additions and 1 deletions

View file

@ -40,6 +40,10 @@ module Transient = struct
exception Frozen exception Frozen
end end
(* TODO: move transient from A.t to 'a t, as nodes can be owned by a transient,
not arrays.
Then do mutable push, and use it for append/filter/flatten/flat_map *)
(* function array *) (* function array *)
module A = struct module A = struct
type 'a t = { type 'a t = {

View file

@ -5,7 +5,7 @@
(** Tree with a large branching factor for logarithmic operations with (** Tree with a large branching factor for logarithmic operations with
a low multiplicative factor. a low multiplicative factor.
{b status: unstable} {b status: experimental. DO NOT USE (yet)}
@since NEXT_RELEASE @since NEXT_RELEASE
*) *)