# File lib/rqrcode/qrcode/qr_bit_buffer.rb, line 33
    def put( num, length )
      ( 0...length ).each do |i|
        put_bit((((num).rszf(length - i - 1)) & 1) == 1)
      end
    end