Click or drag to resize
F# Vector extensions (core)SelectT, R 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 skips missing values.

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static IVector<R> Select<T, R>(
	IVector<T> x,
	FSharpFunc<T, R> f
)

Parameters

x
Type: DeedleIVectorT

[Missing <param name="x"/> documentation for "M:Deedle.F# Vector extensions (core).IVector`1.Select``2(Deedle.IVector{``0},Microsoft.FSharp.Core.FSharpFunc{``0,``1})"]

f
Type: Microsoft.FSharp.CoreFSharpFuncT, R

[Missing <param name="f"/> documentation for "M:Deedle.F# Vector extensions (core).IVector`1.Select``2(Deedle.IVector{``0},Microsoft.FSharp.Core.FSharpFunc{``0,``1})"]

Type Parameters

T
R

Return Value

Type: IVectorR

[Missing <returns> documentation for "M:Deedle.F# Vector extensions (core).IVector`1.Select``2(Deedle.IVector{``0},Microsoft.FSharp.Core.FSharpFunc{``0,``1})"]

See Also