Files
GSS2Rework/GSS2.Core/Extentions/EnumerableExtentions.cs
T
amkovkov ced7e294eb feat: CameraService
Add stable optainitng of raw image from camera
2026-01-15 14:58:11 +03:00

8 lines
205 B
C#

namespace GSS2.Core.Extentions;
static class EnumerableExtentions
{
public static IEnumerable<(int i, T value)> Enumerate<T>(this IEnumerable<T> values) => values.Select((value, i) => (i, value));
}