mirror of
https://github.com/c-cube/iter.git
synced 2025-12-06 11:15:32 -05:00
prepare for 1.7
This commit is contained in:
parent
37a160579a
commit
d410860533
3 changed files with 12 additions and 5 deletions
|
|
@ -1,4 +1,11 @@
|
||||||
|
|
||||||
|
# 1.7
|
||||||
|
|
||||||
|
- add let operators in Infix
|
||||||
|
- require OCaml >= 4.08
|
||||||
|
- improve docs about random iterators
|
||||||
|
- fix: `IO.write_lines` should produce an empty file for an empty iter
|
||||||
|
|
||||||
# 1.6
|
# 1.6
|
||||||
|
|
||||||
- use dune 2.0
|
- use dune 2.0
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
opam-version: "2.0"
|
opam-version: "2.0"
|
||||||
name: "iter"
|
name: "iter"
|
||||||
version: "1.6"
|
version: "1.7"
|
||||||
authors: ["Simon Cruanes" "Gabriel Radanne"]
|
authors: ["Simon Cruanes" "Gabriel Radanne"]
|
||||||
maintainer: "simon.cruanes.2007@m4x.org"
|
maintainer: "simon.cruanes.2007@m4x.org"
|
||||||
license: "BSD-2-clause"
|
license: "BSD-2-clause"
|
||||||
|
|
|
||||||
|
|
@ -797,19 +797,19 @@ module Infix : sig
|
||||||
|
|
||||||
val ( let+ ) : 'a t -> ('a -> 'b) -> 'b t
|
val ( let+ ) : 'a t -> ('a -> 'b) -> 'b t
|
||||||
(** Alias for {!map}
|
(** Alias for {!map}
|
||||||
@since NEXT_RELEASE *)
|
@since 1.7 *)
|
||||||
|
|
||||||
val ( and+ ) : 'a t -> 'b t -> ('a * 'b) t
|
val ( and+ ) : 'a t -> 'b t -> ('a * 'b) t
|
||||||
(** Alias for {!product}
|
(** Alias for {!product}
|
||||||
@since NEXT_RELEASE *)
|
@since 1.7 *)
|
||||||
|
|
||||||
val ( let* ) : 'a t -> ('a -> 'b t) -> 'b t
|
val ( let* ) : 'a t -> ('a -> 'b t) -> 'b t
|
||||||
(** Alias for {!flat_map}
|
(** Alias for {!flat_map}
|
||||||
@since NEXT_RELEASE *)
|
@since 1.7 *)
|
||||||
|
|
||||||
val ( and* ) : 'a t -> 'b t -> ('a * 'b) t
|
val ( and* ) : 'a t -> 'b t -> ('a * 'b) t
|
||||||
(** Alias for {!product}
|
(** Alias for {!product}
|
||||||
@since NEXT_RELEASE *)
|
@since 1.7 *)
|
||||||
end
|
end
|
||||||
|
|
||||||
include module type of Infix
|
include module type of Infix
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue