Click or drag to resize
SeriesModuletryMapK, T, R Method
Returns a new series by applying the specified transformation to all values of the input series. The result contains `Error(e)` when the projection fails with an exception `e` or `Success(v)` containing a value `v` otherwise. [category:Processing series with exceptions]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Series<K, TryValue<R>> tryMap<K, T, R>(
	FSharpFunc<K, FSharpFunc<T, R>> f,
	Series<K, T> series
)

Parameters

f
Type: Microsoft.FSharp.CoreFSharpFuncK, FSharpFuncT, R

[Missing <param name="f"/> documentation for "M:Deedle.SeriesModule.tryMap``3(Microsoft.FSharp.Core.FSharpFunc{``0,Microsoft.FSharp.Core.FSharpFunc{``1,``2}},Deedle.Series{``0,``1})"]

series
Type: DeedleSeriesK, T

[Missing <param name="series"/> documentation for "M:Deedle.SeriesModule.tryMap``3(Microsoft.FSharp.Core.FSharpFunc{``0,Microsoft.FSharp.Core.FSharpFunc{``1,``2}},Deedle.Series{``0,``1})"]

Type Parameters

K
T
R

Return Value

Type: SeriesK, TryValueR

[Missing <returns> documentation for "M:Deedle.SeriesModule.tryMap``3(Microsoft.FSharp.Core.FSharpFunc{``0,Microsoft.FSharp.Core.FSharpFunc{``1,``2}},Deedle.Series{``0,``1})"]

See Also