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

com.github.krukow.clj_ds.PersistentSet Maven / Gradle / Ivy

The newest version!
package com.github.krukow.clj_ds;

import java.util.Set;

public interface PersistentSet extends PersistentCollection, Set, EditableCollection {

	PersistentSet zero();

	PersistentSet plus(E val);

	/**
	 * @return A new {@link PersistentSet} that consists of the elements of the
	 *         current {@link PersistentSet} without the value val.
	 */
	PersistentSet minus(E val);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy