INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |
-- Result of shifting bit sequence by 'i' positions
-- (Positive 'i' shifts right, negative 'i' shifts left
-- bits failling off the sequence's bounds are lost)
-- Result of rotating bit sequence by 'i' positions
-- (Positive 'i' rotates right, negative 'i' rotates left)
-- Bit-by-bit boolean conjunction with 'other'
-- Bit-by-bit boolean disjunction with 'other'
-- Bit-by-bit exclusive or with 'other'
-- Bit-by-bit boolean implication of 'other'
-- Bit-by-bit negation
-- Set the 'i'-th bit to 1 if 'value' is True, 0 if False
-- 'i'-th bit
-- String representation of bit sequence.
-- A zero bit is mapped to '0', a one bit
-- to '1'. item (1) is rightmost character in string
-- Fill sequence from string 's'.
-- 's' must contain '0' and '1' characters only
-- Integer representation of bit sequence
-- Fill sequence from integer 'i'
-- New string containing printable representation of
-- current object
INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |