All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.psjava.util.OrderFreeIterableHash Maven / Gradle / Ivy

The newest version!
package org.psjava.util;

import org.psjava.goods.GoodIntHash;

public class OrderFreeIterableHash {

	public static  int hash(Iterable iterable) {
		int r = 0;
		for (T v : iterable)
			r ^= GoodIntHash.hash(v.hashCode());
		return r;
	}

	private OrderFreeIterableHash() {
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy