Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Almost every control flow mechanism in Rust is redundant: `if (let)`, `while (let)`, and `for` are all encodable with loop/match/break. Even `return` and `continue` are arguably redundant. Control flow is also probably the biggest source of redundant functions (map, and_then, or_else, unwrap, etc...).

In this sense, ? is following in a long tradition.



Ha! Fair point.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: