
package cop3530;

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

