@@ -96,11 +96,11 @@ public TColor[] ToArray()
9696
9797 /// <inheritdoc cref="System.Collections.IEnumerable.GetEnumerator"/>
9898 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
99- public Enumerator GetEnumerator ( ) => new ( _pixels ) ;
99+ public ImageEnumerator GetEnumerator ( ) => new ( _pixels ) ;
100100
101101 #endregion
102102
103- public ref struct Enumerator
103+ public ref struct ImageEnumerator
104104 {
105105 #region Properties & Fields
106106
@@ -120,7 +120,7 @@ public TColor Current
120120
121121
122122 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
123- internal Enumerator ( ReadOnlySpan < TColor > pixels )
123+ internal ImageEnumerator ( ReadOnlySpan < TColor > pixels )
124124 {
125125 this . _pixels = pixels ;
126126
@@ -189,11 +189,11 @@ public ImageRows(ReadOnlySpan<TColor> pixels, int x, int y, int width, int heigh
189189
190190 /// <inheritdoc cref="System.Collections.IEnumerable.GetEnumerator"/>
191191 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
192- public Enumerator GetEnumerator ( ) => new ( this ) ;
192+ public ImageRowsEnumerator GetEnumerator ( ) => new ( this ) ;
193193
194194 #endregion
195195
196- public ref struct Enumerator
196+ public ref struct ImageRowsEnumerator
197197 {
198198 #region Properties & Fields
199199
@@ -213,7 +213,7 @@ public ReadOnlyRefEnumerable<TColor> Current
213213
214214
215215 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
216- internal Enumerator ( ImageRows rows )
216+ internal ImageRowsEnumerator ( ImageRows rows )
217217 {
218218 this . _rows = rows ;
219219
@@ -281,11 +281,11 @@ public ImageColumns(ReadOnlySpan<TColor> pixels, int x, int y, int width, int he
281281
282282 /// <inheritdoc cref="System.Collections.IEnumerable.GetEnumerator"/>
283283 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
284- public Enumerator GetEnumerator ( ) => new ( this ) ;
284+ public ImageColumnsEnumerator GetEnumerator ( ) => new ( this ) ;
285285
286286 #endregion
287287
288- public ref struct Enumerator
288+ public ref struct ImageColumnsEnumerator
289289 {
290290 #region Properties & Fields
291291
@@ -304,7 +304,7 @@ public ReadOnlyRefEnumerable<TColor> Current
304304 #region Constructors
305305
306306 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
307- internal Enumerator ( ImageColumns columns )
307+ internal ImageColumnsEnumerator ( ImageColumns columns )
308308 {
309309 this . _columns = columns ;
310310 this . _position = - 1 ;
0 commit comments