Answers for "Multiplying a u64 to u128 in Rust"

C
0

Multiplying a u64 to u128 in Rust

//convert either u128 or u64 to the other compatible type 
//Use 'as u64' or 'as u128'

this_is_a_u128_num * (this_is_a_u64_num as u128)
Posted by: Guest on August-22-2021

Code answers related to "C"

Browse Popular Code Answers by Language