Click or drag to resize
SeriesExtensionsGetAllObservationsK, T Method
Returns all keys from the sequence, together with the associated (optional) values. The values are returned using the `OptionalValue<T>` struct which provides `HasValue` for testing if the value is available.

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static IEnumerable<KeyValuePair<K, OptionalValue<T>>> GetAllObservations<K, T>(
	this Series<K, T> series
)

Parameters

series
Type: DeedleSeriesK, T

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

Type Parameters

K
T

Return Value

Type: IEnumerableKeyValuePairK, OptionalValueT

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

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type SeriesK, T. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also