Click or drag to resize

LambdaExpression Class

Lambda-expression is an expression of the form "parameter => body" where-in the "=>" reads as goes-to.

The form "x => x * x" reads as "x goes to x times x", for an example expression that yields x multiplied by x.

Used with expression declaration and with enumeration methods, for example, to parameterize by an expression.

Inheritance Hierarchy

Namespace:  com.espertech.esper.common.client.soda
Assembly:  NEsper.Common (in NEsper.Common.dll) Version: 8.0.0.0
Syntax
C#
[SerializableAttribute]
public class LambdaExpression : ExpressionBase

The LambdaExpression type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyChildren
Returns the list of sub-expressions to the current expression.
(Inherited from ExpressionBase.)
Public propertyParameters
Returns the lambda expression parameters.
Public propertyPrecedence (Overrides ExpressionBasePrecedence.)
Public propertyTreeObjectName (Inherited from ExpressionBase.)
Top
Methods
  NameDescription
Public methodAddChild
Adds a new child expression to the current expression.
(Inherited from ExpressionBase.)
Public methodToEPL (Inherited from ExpressionBase.)
Public methodToPrecedenceFreeEPL (Overrides ExpressionBaseToPrecedenceFreeEPL(TextWriter).)
Top
See Also