IGrowingOnlyEnumerableT Interface

Extension of IEnumerableT which is implemented by growing only collections and provides a check for emptiness.

Definition

Namespace: SMath.Extensibility.Collections
Assembly: SMath.Manager (in SMath.Manager.dll) Version: 1.74.9654.0
C#
public interface IGrowingOnlyEnumerable<T> : IEnumerable<T>, 
	IEnumerable
Implements
IEnumerableT, IEnumerable

Type Parameters

T
Type of item in the collection.

Properties

IsEmpty Returns if no items are added to the collection yet.

Methods

GetEnumeratorReturns an enumerator that iterates through the collection.
(Inherited from IEnumerableT)

See Also