|
|
|
|
|
by tialaramex
1222 days ago
|
|
Sure, although that's not a ternary operator, it's just an if expression. In practice you tend to see such casts in code where we directly needed the integer. I think Clippy (Rust's linter) proposes them where you've written if some_bool { 1 } else { 0 } because well, that's what the as cast does anyway. |
|