remove erroneous @since tag in CCList.find_idx

This commit is contained in:
Simon Cruanes 2014-08-08 20:13:51 +02:00
parent edfadba1ef
commit c8413080b4

View file

@ -99,8 +99,7 @@ val findi : (int -> 'a -> 'b option) -> 'a t -> 'b option
val find_idx : ('a -> bool) -> 'a t -> (int * 'a) option
(** [find p x] returns [Some (i,x)] where [x] is the [i]-th element of [l],
and [p x] holds. Otherwise returns [None]
@since NEXT_RELEASE *)
and [p x] holds. Otherwise returns [None] *)
val filter_map : ('a -> 'b option) -> 'a t -> 'b t
(** Map and remove elements at the same time *)