mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 07:48:55 +00:00
10 lines
177 B
Rust
10 lines
177 B
Rust
//@ check-pass
|
|
|
|
fn take_edge_counters(
|
|
x: &mut Option<Vec<i32>>,
|
|
) -> Option<impl Iterator<Item = i32>> {
|
|
x.take().map_or(None, |m| Some(m.into_iter()))
|
|
}
|
|
|
|
fn main() {}
|