File tree 3 files changed +12
-5
lines changed
3 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 1
1
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
+
2
9
# 1.6
3
10
4
11
- use dune 2.0
Original file line number Diff line number Diff line change 1
1
opam-version: "2.0"
2
2
name: "iter"
3
- version: "1.6 "
3
+ version: "1.7 "
4
4
authors: ["Simon Cruanes" "Gabriel Radanne"]
5
5
6
6
license: "BSD-2-clause"
Original file line number Diff line number Diff line change @@ -797,19 +797,19 @@ module Infix : sig
797
797
798
798
val ( let + ) : 'a t -> ('a -> 'b) -> 'b t
799
799
(* * Alias for {!map}
800
- @since NEXT_RELEASE *)
800
+ @since 1.7 *)
801
801
802
802
val ( and + ) : 'a t -> 'b t -> ('a * 'b) t
803
803
(* * Alias for {!product}
804
- @since NEXT_RELEASE *)
804
+ @since 1.7 *)
805
805
806
806
val ( let * ) : 'a t -> ('a -> 'b t) -> 'b t
807
807
(* * Alias for {!flat_map}
808
- @since NEXT_RELEASE *)
808
+ @since 1.7 *)
809
809
810
810
val ( and * ) : 'a t -> 'b t -> ('a * 'b) t
811
811
(* * Alias for {!product}
812
- @since NEXT_RELEASE *)
812
+ @since 1.7 *)
813
813
end
814
814
815
815
include module type of Infix
You can’t perform that action at this time.
0 commit comments