package cop3530;

public interface Set<AnyType>
{
    int getSize( );
    boolean isEmpty( );
    boolean add( AnyType x );
    boolean remove( AnyType x );
    boolean contains( AnyType x );
}