# File lib/riddle/client/response.rb, line 31
      def next_64bit_int
        high, low = @str[@marker, 8].unpack('N*N*')[0..1]
        @marker += 8
        
        return (high << 32) + low
      end