trpl-zh-cn/listings/ch20-advanced-features/listing-20-13/src/lib.rs
2024-10-20 23:44:05 +08:00

4 lines
63 B
Rust

pub trait Iterator<T> {
fn next(&mut self) -> Option<T>;
}