Click or drag to resize
SeriesModuleTryLookupObservationK, T Method
Attempts to get an observation (key value pair) based on the specified key. The search uses the specified lookup semantics and so the returned key may differ from the key searched for. If the value is not available, `None` is returned. [category:Accessing series data and lookup]

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

Parameters

key
Type: K

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

lookup
Type: DeedleLookup

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

series
Type: DeedleSeriesK, T

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

Type Parameters

K
T

Return Value

Type: FSharpOptionTupleK, T

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

See Also