![JAR search and dependency download from the Maven repository](/logo.png)
jason.asSyntax.SetTerm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jason Show documentation
Show all versions of jason Show documentation
Jason is a programming language to develop BDI/cognitive agents
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