Enum SingleOrEnumerableKind
- Namespace
- Garyon.Objects.Enumerators
- Assembly
- Garyon.dll
Represents the kind of values stored in a SingleOrEnumerable<T>.
public enum SingleOrEnumerableKind
- Extension Methods
Fields
Enumerable = 2An enumerable of values is stored. Note that the enumerable could still only contain a single value, however it implements the IEnumerable<T> interface.
None = 0No value is stored, and thus nothing is enumerated.
Single = 1A single value is stored.