Skip to main content

luaur_code_gen/functions/
get_float_bits.rs

1#[inline]
2pub fn get_float_bits(value: f32) -> u32 {
3    value.to_bits()
4}