Method ConcatArrays
ConcatArrays<TInput, TValue>(ISetWindowFieldsPartition<TInput>, Func<TInput, IEnumerable<TValue>>, SetWindowFieldsWindow)
Returns the concatenation of the selected arrays.
public static IEnumerable<TValue> ConcatArrays<TInput, TValue>(this ISetWindowFieldsPartition<TInput> partition, Func<TInput, IEnumerable<TValue>> selector, SetWindowFieldsWindow window = null)
Parameters
partitionISetWindowFieldsPartition<TInput>The partition.
selectorFunc<TInput, IEnumerable<TValue>>The selector that selects an array from the input document.
windowSetWindowFieldsWindowThe window boundaries.
Returns
- IEnumerable<TValue>
The concatenation of the selected arrays.
Type Parameters
TInputThe type of the input documents in the partition.
TValueThe type of the array elements.