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

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

package com.github.krukow.clj_ds;

public interface TransientSet extends TransientCollection {

	TransientSet plus(E val);

	/**
	 * @return A new {@link TransientSet} consisting of all the elements of the
	 *         current collection without the value val (no guarantees are made
	 *         on the current set).
	 */
	TransientSet minus(E val);

	PersistentSet persist();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy