Rust. Source file. pub struct Iterator { current: u32, end: u32, ... if self.current > self.end { return None; } let res = self.current; ...
確定! 回上一頁