Click or drag to resize
IVectorTConvertTNew Method
Create a vector whose values are converted using the specified function, but can be converted back using another specified function. For virtualized vectors, this enables e.g. efficient lookup on the returned vectors (by delegating the lookup to the original source)

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

Parameters

param0
Type: Microsoft.FSharp.CoreFSharpFuncT, TNew

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

param1
Type: Microsoft.FSharp.CoreFSharpFuncTNew, T

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

Type Parameters

TNew

Return Value

Type: IVectorTNew

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

See Also