darkly
darkly copied to clipboard
statement form/argument form of scanlns
Perhaps with an implicit loop?
scanlns!("{} {}", x: u32, y:String, {
...
});
Or perhaps it should still have expression form, but lets you specify types as arguments, e.g., scanlns!("{}, {}", u32, String) which gives Iterator<Item=(u32, String)>