Alexandria.Compression.BitStream.BooleanLSB C# (CSharp) Method

BooleanLSB() public method

Read a bit in LSB order and return whether it's non-zero.
public BooleanLSB ( ) : bool
return bool
        public bool BooleanLSB()
        {
            return ReadLSB(1) != 0;
        }