public class list extends DefaultInternalAction
Internal action: .list
.
Description: checks whether the argument is a list, e.g.: "[a,b]", "[]".
Parameter:
Examples:
.list([a,b,c])
: true.
.list([a,b,c(X)])
: true.
.list(b(10))
: false.
.list(10)
: false.
.list("home page")
: false.
.list(X)
: false if X is free, true if X is bound to a list.
.list(a(X))
: false.
Constructor and Description |
---|
list() |
Modifier and Type | Method and Description |
---|---|
static InternalAction |
create() |
java.lang.Object |
execute(TransitionSystem ts,
Unifier un,
Term[] args)
Executes the internal action.
|
int |
getMaxArgs() |
int |
getMinArgs() |
canBeUsedInContext, checkArguments, destroy, prepareArguments, suspendIntention
public static InternalAction create()
public int getMinArgs()
getMinArgs
in class DefaultInternalAction
public int getMaxArgs()
getMaxArgs
in class DefaultInternalAction
public java.lang.Object execute(TransitionSystem ts, Unifier un, Term[] args) throws java.lang.Exception
InternalAction
execute
in interface InternalAction
execute
in class DefaultInternalAction
java.lang.Exception