File tree Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 11
2+ # 1.7
3+
4+ - add let operators in Infix
5+ - require OCaml >= 4.08
6+ - improve docs about random iterators
7+ - fix: ` IO.write_lines ` should produce an empty file for an empty iter
8+
29# 1.6
310
411- use dune 2.0
Original file line number Diff line number Diff line change 11opam-version: "2.0"
22name: "iter"
3- version: "1.6 "
3+ version: "1.7 "
44authors: ["Simon Cruanes" "Gabriel Radanne"]
55maintainer: "simon.cruanes.2007@m4x.org"
66license: "BSD-2-clause"
Original file line number Diff line number Diff line change @@ -797,19 +797,19 @@ module Infix : sig
797797
798798 val ( let + ) : 'a t -> ('a -> 'b) -> 'b t
799799 (* * Alias for {!map}
800- @since NEXT_RELEASE *)
800+ @since 1.7 *)
801801
802802 val ( and + ) : 'a t -> 'b t -> ('a * 'b) t
803803 (* * Alias for {!product}
804- @since NEXT_RELEASE *)
804+ @since 1.7 *)
805805
806806 val ( let * ) : 'a t -> ('a -> 'b t) -> 'b t
807807 (* * Alias for {!flat_map}
808- @since NEXT_RELEASE *)
808+ @since 1.7 *)
809809
810810 val ( and * ) : 'a t -> 'b t -> ('a * 'b) t
811811 (* * Alias for {!product}
812- @since NEXT_RELEASE *)
812+ @since 1.7 *)
813813end
814814
815815include module type of Infix
You can’t perform that action at this time.
0 commit comments