FrameColumnAsTIn, TOut(FuncTIn, TOut) Method
Returns a transformation of the column as a typed list.
Namespace: Meta.Numerics.DataAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
public IReadOnlyList<TOut> As<TIn, TOut>(
Func<TIn, TOut> transformation
)
Public Function As(Of TIn, TOut) (
transformation As Func(Of TIn, TOut)
) As IReadOnlyList(Of TOut)
public:
generic<typename TIn, typename TOut>
IReadOnlyList<TOut>^ As(
Func<TIn, TOut>^ transformation
)
member As :
transformation : Func<'TIn, 'TOut> -> IReadOnlyList<'TOut>
- transformation FuncTIn, TOut
- The transformation.
- TIn
- The input type of the transformation.
- TOut
- The output type of the transformation.
IReadOnlyListTOutAn object that allows a transformation of the column to be accessed as a typed list.