Class LambdaFunctionNode
java.lang.Object
com.yahoo.searchlib.rankingexpression.rule.ExpressionNode
com.yahoo.searchlib.rankingexpression.rule.CompositeNode
com.yahoo.searchlib.rankingexpression.rule.LambdaFunctionNode
- All Implemented Interfaces:
Serializable
A free, parametrized function
- Author:
- bratseth
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionLambdaFunctionNode(List<String> arguments, ExpressionNode functionExpression) -
Method Summary
Modifier and TypeMethodDescriptionReturns this as a double binary operatorReturns this as a double unary operatorchildren()Returns a read-only list containing the immediate children of this composite.Evaluate this in a context which must have the arguments boundinthashCode()Returns a hashcode computed from the data in thissetChildren(List<ExpressionNode> children) Returns a copy of this where the children is replaced by the given children.toString(StringBuilder string, SerializationContext context, Deque<String> path, CompositeNode parent) Returns this in serialized form.com.yahoo.tensor.TensorTypeReturns the type this will return if evaluated with the given context.Methods inherited from class com.yahoo.searchlib.rankingexpression.rule.ExpressionNode
equals, toString, toString
-
Constructor Details
-
LambdaFunctionNode
-
-
Method Details
-
children
Description copied from class:CompositeNodeReturns a read-only list containing the immediate children of this composite.- Specified by:
childrenin classCompositeNode- Returns:
- The children of this.
-
setChildren
Description copied from class:CompositeNodeReturns a copy of this where the children is replaced by the given children.- Specified by:
setChildrenin classCompositeNode
-
toString
public StringBuilder toString(StringBuilder string, SerializationContext context, Deque<String> path, CompositeNode parent) Description copied from class:ExpressionNodeReturns this in serialized form.- Specified by:
toStringin classExpressionNode- Parameters:
string- the StringBuilder that will be appended tocontext- the serialization contextpath- the call path to this, used for cycle detection, or null if this is a rootparent- the parent node of this, or null if it is a root- Returns:
- the main script, referring to script instances.
-
type
Description copied from class:ExpressionNodeReturns the type this will return if evaluated with the given context.- Specified by:
typein classExpressionNode- Parameters:
context- the variable type bindings to use for this evaluation
-
evaluate
Evaluate this in a context which must have the arguments bound- Specified by:
evaluatein classExpressionNode- Parameters:
context- the variable bindings to use for this evaluation
-
asDoubleUnaryOperator
Returns this as a double unary operator- Throws:
IllegalStateException- if this has more than one argument
-
asDoubleBinaryOperator
Returns this as a double binary operator- Throws:
IllegalStateException- if this has more than two arguments
-
hashCode
public int hashCode()Description copied from class:ExpressionNodeReturns a hashcode computed from the data in this- Specified by:
hashCodein classExpressionNode
-