Table of Contents

Interface IStructEnumerable<T, TEnumerator>

Namespace
MarymoorStudios.Core
Assembly
MarymoorStudios.Core.dll

Exposes the enumerator, which supports a simple iteration over a collection of a specified type.

public interface IStructEnumerable<out T, out TEnumerator> where TEnumerator : struct, IStructEnumerator<out T, out TEnumerator>, IEnumerator<out T>

Type Parameters

T

The type of objects to enumerate.

TEnumerator

The type the enumerator that enumerates them.

Methods

GetEnumerator()

Returns an enumerator that iterates through sequence of elements.

TEnumerator GetEnumerator()

Returns

TEnumerator