repl.txt (521B)
1 2 {{alias}}( x ) 3 Returns an unsigned 32-bit integer corresponding to the IEEE 754 binary 4 representation of a single-precision floating-point number. 5 6 Parameters 7 ---------- 8 x: float 9 Single-precision floating-point number. 10 11 Returns 12 ------- 13 out: integer 14 Unsigned 32-bit integer. 15 16 Examples 17 -------- 18 > var f32 = {{alias:@stdlib/number/float64/base/to-float32}}( 1.337 ) 19 1.3370000123977661 20 > var w = {{alias}}( f32 ) 21 1068180177 22 23 See Also 24 -------- 25