This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public partial class CircularStack<T> | |
{ | |
IEnumerator<T> IEnumerable<T>.GetEnumerator() | |
=> new Enumerator(this); | |
IEnumerator IEnumerable.GetEnumerator() | |
=> new Enumerator(this); | |
/// <summary> | |
/// Implements <see cref="IEnumerator{T}"/> for a <see cref="CircularStack{T}"/>. |