Table of Contents

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 = 2

An enumerable of values is stored. Note that the enumerable could still only contain a single value, however it implements the IEnumerable<T> interface.

None = 0

No value is stored, and thus nothing is enumerated.

Single = 1

A single value is stored.