mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-22 13:38:04 +08:00
4 lines
63 B
Rust
4 lines
63 B
Rust
pub trait Iterator<T> {
|
|
fn next(&mut self) -> Option<T>;
|
|
}
|