update @since tags

This commit is contained in:
Simon Cruanes 2016-03-07 14:18:25 +01:00
parent 8f5bd27b71
commit 243f81ae88

View file

@ -204,13 +204,13 @@ val group : ?eq:('a -> 'a -> bool) -> 'a t -> 'a list t
val group_succ_by : ?eq:('a -> 'a -> bool) -> 'a t -> 'a list t
(** Group equal consecutive elements.
Synonym to {!group}.
@since NEXT_RELEASE *)
@since 0.6 *)
val group_by : ?hash:('a -> int) -> ?eq:('a -> 'a -> bool) ->
'a t -> 'a list t
(** Group equal elements, disregarding their order of appearance.
The result sequence is traversable as many times as required.
@since NEXT_RELEASE *)
@since 0.6 *)
val uniq : ?eq:('a -> 'a -> bool) -> 'a t -> 'a t
(** Remove consecutive duplicate elements. Basically this is