Click or drag to resize
F# Series extensionsSeriesofNullablesa Method
Create a series from a sequence of nullable values. The keys of the resulting series are generated ordinarilly, starting from 0. The resulting series will contain keys associated with the `null` values, but the values are treated as missing.

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Series<int, a> ofNullables<a>(
	IEnumerable<Nullable<a>> values
)
where a : struct, new()

Parameters

values
Type: System.Collections.GenericIEnumerableNullablea

[Missing <param name="values"/> documentation for "M:Deedle.F# Series extensions.Series.ofNullables``1(System.Collections.Generic.IEnumerable{System.Nullable{``0}})"]

Type Parameters

a

Return Value

Type: SeriesInt32, a

[Missing <returns> documentation for "M:Deedle.F# Series extensions.Series.ofNullables``1(System.Collections.Generic.IEnumerable{System.Nullable{``0}})"]

See Also