Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Fully qualified name: Std.Convert.IntAsBoolArray
function IntAsBoolArray(number : Int, bits : Int) : Bool[]
Summary
Produces a binary representation of a non-negative integer, using the little-endian representation for the returned array.
Input
number
A non-negative integer to be converted to an array of Boolean values.
bits
The number of bits in the binary representation of number.
Output
An array of Boolean values representing number.
Remarks
The input bits must be non-negative.
The input number must be between 0 and 2^bits - 1.