public class ModFunction extends FunctionNode
GroupingExpression
. It evaluates to a number that equals the result
of mod'ing the results of all arguments in the order they were given to the constructor (modulo first argument by
second, result by third, ...).Modifier | Constructor and Description |
---|---|
|
ModFunction(GroupingExpression arg1,
GroupingExpression arg2,
GroupingExpression... argN)
Constructs a new instance of this class.
|
private |
ModFunction(List<GroupingExpression> args) |
Modifier and Type | Method and Description |
---|---|
static ModFunction |
newInstance(List<GroupingExpression> args)
Constructs a new instance of this class from a list of arguments.
|
asList, asList, asList, getArg, getNumArgs, iterator, resolveLevel, visit
asImage, asString, getLevel, setLabel
getLabel, toString
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
forEach, spliterator
public ModFunction(GroupingExpression arg1, GroupingExpression arg2, GroupingExpression... argN)
arg1
- The first compulsory argument, must evaluate to a number.arg2
- The second compulsory argument, must evaluate to a number.argN
- The optional arguments, must evaluate to a number.private ModFunction(List<GroupingExpression> args)
public static ModFunction newInstance(List<GroupingExpression> args)
args
- The arguments to pass to the constructor.IllegalArgumentException
- Thrown if the number of arguments is less than 2.Copyright © 2018. All rights reserved.