fix get_bit docs
This commit is contained in:
parent
e2b05d7c86
commit
3d7df45c2b
@ -21,10 +21,10 @@ def is_scalar(var: Any) -> bool:
|
||||
|
||||
def get_bit(bit_string: Any, bit_id: int) -> bool:
|
||||
"""
|
||||
Returns true iff bit number 'bit_id' from the right of 'bitstring' is 1
|
||||
Returns true iff bit number 'bit_id' from the right of 'bit_string' is 1
|
||||
|
||||
:param bit_string: st
|
||||
:param bit_id:
|
||||
:param bit_string: Bit string to test
|
||||
:param bit_id: Bit number, 0-indexed from the right (lsb
|
||||
:return: value of the requested bit (bool)
|
||||
"""
|
||||
return bit_string & (1 << bit_id) != 0
|
||||
|
Loading…
Reference in New Issue
Block a user