How to get the smallest power of two that is greater than specific value in Rust

1 Answer

0 votes
fn main() {
    let mut val = 3u8;
    
    println!("{}", val.next_power_of_two()); 
    
    val = 9u8;
    
    println!("{}", val.next_power_of_two()); 
}



/*
run:

4
16

*/

 



answered Dec 9, 2022 by avibootz
...