FrameColumnAsTIn, TOut(FuncTIn, TOut) Method

Returns a transformation of the column as a typed list.

Definition

Namespace: Meta.Numerics.Data
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public IReadOnlyList<TOut> As<TIn, TOut>(
	Func<TIn, TOut> transformation
)

Parameters

transformation  FuncTIn, TOut
The transformation.

Type Parameters

TIn
The input type of the transformation.
TOut
The output type of the transformation.

Return Value

IReadOnlyListTOut
An object that allows a transformation of the column to be accessed as a typed list.

See Also