com.github.grignaak.collections.CowSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cow-collections Show documentation
Show all versions of cow-collections Show documentation
Copy-on-write collections for easy, thread-safe, immutability
The newest version!
package com.github.grignaak.collections;
import java.util.Set;
/**
* {@inheritDoc}
*/
public interface CowSet extends Set, CowCollection {
/**
* {@inheritDoc}
*/
@Override
CowSet fork();
}