Home | History | Annotate | Download | only in hash

Lines Matching refs:hashCodes

217    * @throws IllegalArgumentException if {@code hashCodes} is empty, or the hash codes
220 public static HashCode combineOrdered(Iterable<HashCode> hashCodes) {
221 Iterator<HashCode> iterator = hashCodes.iterator();
225 for (HashCode hashCode : hashCodes) {
228 "All hashcodes must have the same bit length.");
233 return HashCodes.fromBytes(resultBytes);
243 * @throws IllegalArgumentException if {@code hashCodes} is empty, or the hash codes
246 public static HashCode combineUnordered(Iterable<HashCode> hashCodes) {
247 Iterator<HashCode> iterator = hashCodes.iterator();
250 for (HashCode hashCode : hashCodes) {
253 "All hashcodes must have the same bit length.");
258 return HashCodes.fromBytes(resultBytes);
289 return HashCodes.fromBytes(bytes);