Click or drag to resize

RingBufferTEnumerateOneItem(Int32) Method

Enumerates one single item at a time.

Namespace: Altaxo.Collections
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public IEnumerable<(T , int )> EnumerateOneItem(
	int increment
)

Parameters

increment  Int32
The increment. An increment of 1 enumerates every item in the buffer, an increment of 2 every second item, etc.

Return Value

IEnumerableValueTupleT, Int32
Enumeration of item and the corresponding index of the item.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionincrement
See Also