Click or drag to resize
SeriesModuleTryLookupK, T Method
Attempts to get the value for the specified key. If the value is not available, `None` is returned. Use the specified lookup semantics - for exact matching, use `tryGet`. [category:Accessing series data and lookup]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static FSharpOption<T> TryLookup<K, T>(
	K key,
	Lookup lookup,
	Series<K, T> series
)

Parameters

key
Type: K

[Missing <param name="key"/> documentation for "M:Deedle.SeriesModule.TryLookup``2(``0,Deedle.Lookup,Deedle.Series{``0,``1})"]

lookup
Type: DeedleLookup

[Missing <param name="lookup"/> documentation for "M:Deedle.SeriesModule.TryLookup``2(``0,Deedle.Lookup,Deedle.Series{``0,``1})"]

series
Type: DeedleSeriesK, T

[Missing <param name="series"/> documentation for "M:Deedle.SeriesModule.TryLookup``2(``0,Deedle.Lookup,Deedle.Series{``0,``1})"]

Type Parameters

K
T

Return Value

Type: FSharpOptionT

[Missing <returns> documentation for "M:Deedle.SeriesModule.TryLookup``2(``0,Deedle.Lookup,Deedle.Series{``0,``1})"]

See Also