FrameColumnAsTIn, TOut Method (FuncTIn, TOut) |
Returns a transformation of the column as a typed list.
Namespace:
Meta.Numerics.Data
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax 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>
Parameters
- transformation
- Type: SystemFuncTIn, TOut
The transformation.
Type Parameters
- TIn
- The input type of the transformation.
- TOut
- The output type of the transformation.
Return Value
Type:
IReadOnlyListTOutAn object that allows a transformation of the column to be accessed as a typed list.
See Also