public int hashCode()

in src/main/java/org/apache/accumulo/access/BytesWrapper.java [93:102]


  public int hashCode() {
    int hash = 1;

    int end = offset + length();
    for (int i = offset; i < end; i++) {
      hash = (31 * hash) + data[i];
    }

    return hash;
  }