1
Qual é a maneira correta de retornar um Iterador (ou qualquer outra característica)?
O seguinte código Rust é compilado e executado sem problemas. fn main() { let text = "abc"; println!("{}", text.split(' ').take(2).count()); } Depois disso, tentei algo assim ... mas não compilou fn main() { let text = "word1 word2 word3"; println!("{}", to_words(text).take(2).count()); } fn to_words(text: &str) -> &Iterator<Item = &str> { …
114
rust