mirror of
https://github.com/c-cube/iter.git
synced 2025-12-06 11:15:32 -05:00
Preparing the release.
This commit is contained in:
parent
37cfdbef0b
commit
0e27e0f4da
5 changed files with 11 additions and 4 deletions
|
|
@ -1,5 +1,11 @@
|
|||
# Changelog
|
||||
|
||||
## 1.2
|
||||
|
||||
- Rename the library to Iter.
|
||||
- Add `from_labeled_iter`.
|
||||
- Use `raise_notrace` for internal exceptions.
|
||||
|
||||
## 1.1
|
||||
|
||||
- perf: use `Set.elements` to convert to list
|
||||
|
|
|
|||
|
|
@ -1 +1,2 @@
|
|||
(lang dune 1.0)
|
||||
(name iter)
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ version: "1.2"
|
|||
authors: ["Simon Cruanes" "Gabriel Radanne"]
|
||||
maintainer: "simon.cruanes.2007@m4x.org"
|
||||
license: "BSD-2-clauses"
|
||||
synopsis: "Simple abstract over `iter` functions, intended to iterate efficiently on collections while performing some transformations"
|
||||
synopsis: "Simple abstraction over `iter` functions, intended to iterate efficiently on collections while performing some transformations"
|
||||
build: [
|
||||
["dune" "build" "@install" "-p" name "-j" jobs]
|
||||
["dune" "build" "@doc" "-p" name] {with-doc}
|
||||
|
|
@ -24,6 +24,6 @@ homepage: "https://github.com/c-cube/iter/"
|
|||
depopts: [
|
||||
"base-bigarray"
|
||||
]
|
||||
doc: "https://c-cube.github.io/iter/"
|
||||
doc: "https://c-cube.github.io/iter/doc/${version}"
|
||||
bug-reports: "https://github.com/c-cube/iter/issues"
|
||||
dev-repo: "git+https://github.com/c-cube/iter.git"
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ val from_iter : (('a -> unit) -> unit) -> 'a t
|
|||
|
||||
val from_labelled_iter : (f:('a -> unit) -> unit) -> 'a t
|
||||
(** Build an iterator from a labelled iter function
|
||||
@since NEXT_RELEASE *)
|
||||
@since 1.2 *)
|
||||
|
||||
val from_fun : (unit -> 'a option) -> 'a t
|
||||
(** Call the function repeatedly until it returns None. This
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ val from_iter : (('a -> unit) -> unit) -> 'a t
|
|||
|
||||
val from_labelled_iter : (f:('a -> unit) -> unit) -> 'a t
|
||||
(** Build an iterator from a labelled iter function
|
||||
@since NEXT_RELEASE *)
|
||||
@since 1.2 *)
|
||||
|
||||
val from_fun : (unit -> 'a option) -> 'a t
|
||||
(** Call the function repeatedly until it returns None. This
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue