Hacker Newsnew | past | comments | ask | show | jobs | submitlogin
Two commutes with Rust (xania.org)
23 points by n_ham on May 21, 2015 | hide | past | favorite | 3 comments


There’s no ternary operators, but instead everything is an expression, so you just put an if statement in the middle of your expression like : a = if b > 1 { 1 } else { 2 }.

I don't understand this takeaway. Did the author forget a word?


a = if b > 1 { 1 } else { 2 }

is equivalent to:

a = b > 1 ? 1 : 2

in other languages. Meaning that the if/else statement can be used as an expression that can provide an rvalue of integer type.


I think "but" is just incorrect to include: "; instead,". And "there's" should be "there are".




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

Search: