Quantcast
Channel: How do I convert a boolean to an integer in Rust? - Stack Overflow
Browsing latest articles
Browse All 5 View Live

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 Article


Answer 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 Article


Answer 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 Article

Answer by ForceBru for How do I convert a boolean to an integer in Rust?

Cast it:fn main() { println!("{}", true as i32)}

View Article

How 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

Browsing latest articles
Browse All 5 View Live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>