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

        (high << 32) + low
      end