We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
fn main() { println!("{:?}", ("abc".to_owned()).split("").collect::<Vec<_>>()); }
["", "a", "b", "c", ""]
Is this expected behavior? If so, it should probably be documented.