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

stonehorse.grit.set.EphemeralSet Maven / Gradle / Ivy

Go to download

Persistent Collections for Java. Immutable containers with mutation as expression

The newest version!
package stonehorse.grit.set;


import stonehorse.grit.PersistentSet;

public interface EphemeralSet {
	PersistentSet persistent();

	EphemeralSet ifMissing(T t);
	
	EphemeralSet with(T t);
	
	EphemeralSet without(T t);
	
	EphemeralSet difference(Iterable iterable);
	EphemeralSet union(Iterable iterable);
	
	int size();
	boolean isEmpty();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy