↧
Answer by wasmup for How do I convert a boolean to an integer in Rust?
You may use .into():let a = true;let b: i32 = a.into();println!("{}", b); // 1let z: isize = false.into();println!("{}", z); // 0playground
View ArticleAnswer by Tim Diekmann for How do I convert a boolean to an integer in Rust?
A boolean value in Rust is guaranteed to be 1 or 0:The bool represents a value, which could only be either true or false. If you cast a bool into an integer, true will be 1 and false will be 0.A...
View ArticleAnswer by Shepmaster for How do I convert a boolean to an integer in Rust?
Use an if statement:if some_boolean { 1 } else { 0 }See also:How can I port C++ code that uses the ternary operator to Rust?
View ArticleAnswer by ForceBru for How do I convert a boolean to an integer in Rust?
Cast it:fn main() { println!("{}", true as i32)}
View ArticleHow do I convert a boolean to an integer in Rust?
How do I convert a boolean to an integer in Rust? As in, true becomes 1, and false becomes 0.
View Article