diff --git a/src/data/CCFun_vec.mli b/src/data/CCFun_vec.mli index 06ce752f..29373650 100644 --- a/src/data/CCFun_vec.mli +++ b/src/data/CCFun_vec.mli @@ -83,6 +83,7 @@ val iteri_rev : f:(int -> 'a -> unit) -> 'a t -> unit (** Iterate on elements with their index, but starting from the end. *) val fold : f:('b -> 'a -> 'b) -> x:'b -> 'a t -> 'b +val fold_rev : f:('b -> 'a -> 'b) -> x:'b -> 'a t -> 'b val foldi : f:('b -> int -> 'a -> 'b) -> x:'b -> 'a t -> 'b val append : 'a t -> 'a t -> 'a t val map : ('a -> 'b) -> 'a t -> 'b t