Table of Contents

Class Result.LambdaResult

Namespace
xFunc.Maths.Results
Assembly
xFunc.Maths.dll

Represents the lambda result.

public sealed class Result.LambdaResult : Result
Inheritance
Result.LambdaResult
Inherited Members

Constructors

LambdaResult(Lambda)

Initializes a new instance of the Result.LambdaResult class.

public LambdaResult(Lambda lambda)

Parameters

lambda Lambda

The lambda value.

Properties

Lambda

Gets the lambda value.

public override Lambda Lambda { get; }

Property Value

Lambda

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.

Operators

implicit operator Lambda(LambdaResult)

public static implicit operator Lambda(Result.LambdaResult lambdaResult)

Parameters

lambdaResult Result.LambdaResult

The lambda result.

Returns

Lambda

The lambda.