Reading bits (and bytes)

  • A type that contains functions for reading Data bit-by-bit and byte-by-byte.

    See more

    Declaration

    Swift

    public protocol BitReader : ByteReader
  • A type that contains functions for reading Data bit-by-bit using “LSB0” bit numbering scheme and byte-by-byte in the Little Endian order.

    See more

    Declaration

    Swift

    public final class LsbBitReader : BitReader
  • A type that contains functions for reading Data bit-by-bit using “MSB0” bit numbering scheme and byte-by-byte in the Little Endian order.

    See more

    Declaration

    Swift

    public final class MsbBitReader : BitReader