# File lib/rqrcode/qrcode/qr_bit_buffer.rb, line 27
    def get( index )
      buf_index = (index / 8).floor
      (( (@buffer[buf_index]).rszf(7 - index % 8)) & 1) == 1
    end