Click or drag to resize
SeriesModuleLookupAllK, T Method
Create a new series that contains values for all provided keys. Use the specified lookup semantics - for exact matching, use `getAll` ## Parameters - `keys` - A sequence of keys that will form the keys of the retunred sequence - `lookup` - Lookup behavior to use when the value at the specified key does not exist [category:Accessing series data and lookup]

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

Parameters

keys
Type: System.Collections.GenericIEnumerableK

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

lookup
Type: DeedleLookup

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

series
Type: DeedleSeriesK, T

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

Type Parameters

K
T

Return Value

Type: SeriesK, T

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

See Also