Crates.io | iterator_item |
lib.rs | iterator_item |
version | 0.2.0 |
source | src |
created_at | 2021-11-06 01:00:21.847403 |
updated_at | 2021-11-10 21:49:07.48375 |
description | a generator syntax experiment |
homepage | |
repository | https://github.com/estebank/iterator_item |
max_upload_size | |
id | 477568 |
size | 32,124 |
This crate is a thin wrapper around the unstable generator feature, allowing users to create new items that act as generators. It follows the general semantics of the Propane crate, but my interest for this crate is for interested people to fork it and come up with their own syntax for these.
The following syntaxes are supported and need to be surrounded by an invocation of the
iterator_item
macro:
Disambiguator: *
fn* foo() yields i32 {
for n in 0i32..10 {
yield n;
}
}
Disambiguator: !
gen fn foo() -> i32 {
for n in 0i32..10 {
yield n;
}
}
Because it is a macro, it does not work as well as a native language feature would, and has worse error messages, but some effort has been made to make them usable.
Because the semantics are heavily leaning on Propane, the following considerations also apply to this crate.
Propane is designed to allow users to write generators for the purpose of implementing iterators. For that reason, its generators are restricted in some important ways. These are the intentional design restrictions of propane (that is, these are not limitations because of bugs, they are not intended to be lifted):
impl Iterator
; the iterator interface is
the only interface users can use with the generator's return type.()
, it cannot yield one type and then return another
interesting type. The ?
operator yields the error and then, on the next resumption, returns.Because of the signature of Iterator::next
, it is always safe to move iterators between calls to
next
. This makes unboxed, self-referential iterators unsound. We did not have Pin
when we
designed the Iterator API.
However, in general, users can push unowned data outside of the iterator in a way they can't with
futures. Futures, usually, ultimately have to be 'static
, so they can spawned, but iterators
usually are consumed in a way that does not require them to own all of their data.
Therefore, it is potentially the case that generators restricted to not contain self-references are sufficient for this use case. Propane intends to explore that possibility.