integer_to_binary_list(x)
Returns the binary representation of x
Returns a list of bools as the binary representation of the signed integer value x.
Parameters
x: The integer value to be converted to a binary list.
Return Value
A list of 32 bools, where False represents a zero and True represents a one. The bool at index 0 is the least significant bit.
Example command: integer_to_binary_list(57)
- Example Parameters:
- x integer 57
- Returns binary list
- x integer 57