public long skip()

in src/main/java/com/spotify/sparkey/IndexHash.java [778:788]


    public long skip(long n) throws IOException {
      if (n < 0) {
        throw new IllegalArgumentException();
      }
      if (remaining >= n) {
        stream.skipBytes(n);
        remaining -= n;
        return n;
      }
      throw new EOFException();
    }