Class ParsedExpressionFunction<T1, TResult>
- Namespace
- LfrlAnvil.Computable.Expressions.Constructs
- Assembly
- LfrlAnvil.Computable.Expressions.dll
Represents a function construct.
public class ParsedExpressionFunction<T1, TResult> : ParsedExpressionFunction
Type Parameters
T1
First parameter's type.
TResult
result type.
- Inheritance
-
ParsedExpressionFunction<T1, TResult>
- Inherited Members
Constructors
ParsedExpressionFunction(Expression<Func<T1, TResult>>)
Creates a new ParsedExpressionFunction<T1, TResult> instance.
public ParsedExpressionFunction(Expression<Func<T1, TResult>> lambda)
Parameters
lambda
Expression<Func<T1, TResult>>Underlying LambdaExpression.