We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ff603c commit 610063cCopy full SHA for 610063c
src/FastExpressionCompiler/ImTools.cs
@@ -277,6 +277,13 @@ public interface ISize8Plus : ISize4Plus { }
277
/// <summary>Marker for collection or container holding 16 or more items</summary>
278
public interface ISize16Plus : ISize8Plus { }
279
280
+/// <summary>Marker for collection or container holding 0 items</summary>
281
+public struct Size0 : ISize
282
+{
283
+ /// <inheritdoc/>
284
+ public int Size => 0;
285
+}
286
+
287
/// <summary>Marker for collection or container holding 4 items</summary>
288
public struct Size2 : ISize2Plus
289
{
0 commit comments