Click or drag to resize
SeriesModuleHasSomeK, T Method
Returns true when the series contains value for some of the specified keys (This is useful for checking prior to performing a computation) [category:Accessing series data and lookup]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static bool HasSome<K, T>(
	IEnumerable<K> keys,
	Series<K, T> series
)

Parameters

keys
Type: System.Collections.GenericIEnumerableK

[Missing <param name="keys"/> documentation for "M:Deedle.SeriesModule.HasSome``2(System.Collections.Generic.IEnumerable{``0},Deedle.Series{``0,``1})"]

series
Type: DeedleSeriesK, T

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

Type Parameters

K
T

Return Value

Type: Boolean

[Missing <returns> documentation for "M:Deedle.SeriesModule.HasSome``2(System.Collections.Generic.IEnumerable{``0},Deedle.Series{``0,``1})"]

See Also