Click or drag to resize
SeriesModuleMergeAllK, V Method
Merge multiple series with distinct keys. When the same key with a value occurs in two of the series, an exception is thrown. This function is efficient even when the number of series to be merged is large. [category:Joining, merging and zipping]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Series<K, V> MergeAll<K, V>(
	IEnumerable<Series<K, V>> series
)

Parameters

series
Type: System.Collections.GenericIEnumerableSeriesK, V

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

Type Parameters

K
V

Return Value

Type: SeriesK, V

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

See Also