Click or drag to resize
IVectorTSelectTNew Method
Apply the specified function to all values stored in the vector and return a new vector (not necessarily of the same representation) with the results. The function handles missing values - it is called with optional values and may return a missing value as a result of the transformation.

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
IVector<TNew> Select<TNew>(
	FSharpFunc<IVectorLocation, FSharpFunc<OptionalValue<T>, OptionalValue<TNew>>> param0
)

Parameters

param0
Type: Microsoft.FSharp.CoreFSharpFuncIVectorLocation, FSharpFuncOptionalValueT, OptionalValueTNew

[Missing <param name="param0"/> documentation for "M:Deedle.IVector`1.Select``1(Microsoft.FSharp.Core.FSharpFunc{Deedle.IVectorLocation,Microsoft.FSharp.Core.FSharpFunc{Deedle.OptionalValue{`0},Deedle.OptionalValue{``0}}})"]

Type Parameters

TNew

Return Value

Type: IVectorTNew

[Missing <returns> documentation for "M:Deedle.IVector`1.Select``1(Microsoft.FSharp.Core.FSharpFunc{Deedle.IVectorLocation,Microsoft.FSharp.Core.FSharpFunc{Deedle.OptionalValue{`0},Deedle.OptionalValue{``0}}})"]

See Also