Skip to content

Commit

Permalink
fix: add missing CCVector.of_iter
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Jan 13, 2020
1 parent 5143e28 commit 2e3393f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/core/CCArray_sliceLabels.mli
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,9 @@ val to_gen : 'a t -> 'a gen
(** [to_gen as] returns a [gen] of the elements of a slice [as]. *)

val to_klist : 'a t -> 'a klist
(** [to_klist as] returns a [klist] of the elements of a slice [as]. *)
(** [to_klist as] returns a [klist] of the elements of a slice [as].
@deprecated use {!to_std_seq} *)
[@@ocaml.deprecated "use to_std_seq"]

(** {2 IO} *)

Expand Down
4 changes: 4 additions & 0 deletions src/core/CCVector.mli
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,10 @@ val to_array : ('a,_) t -> 'a array
val to_list : ('a,_) t -> 'a list
(** Return a list with the elements contained in the vector. *)

val of_iter : ?init:('a,rw) t -> 'a iter -> ('a, rw) t
(** Convert an Iterator to a vector.
@since NEXT_RELEASE *)

val of_seq : ?init:('a,rw) t -> 'a sequence -> ('a, rw) t
(** Convert an Iterator to a vector.
@deprecated use of_iter *)
Expand Down

0 comments on commit 2e3393f

Please sign in to comment.