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

jason.asSyntax.SetTerm Maven / Gradle / Ivy

The newest version!
package jason.asSyntax;

import java.util.Collection;

/**
 * The interface for sets in the AgentSpeak language
 *
 * @author Jomi
 */
public interface SetTerm extends Term, Collection, Iterable {
    public void union(Iterable lt);
    public void intersection(Collection lt);
    public void difference(Collection lt);

    public ListTerm getAsListTerm();
    public SetTerm deepClone();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy