
com.github.krukow.clj_ds.PersistentSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clj-ds Show documentation
Show all versions of clj-ds Show documentation
Port of Clojure's data structures to Java
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