Skip to content

Commit 610063c

Browse files
committed
adding Size0
1 parent 2ff603c commit 610063c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/FastExpressionCompiler/ImTools.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,13 @@ public interface ISize8Plus : ISize4Plus { }
277277
/// <summary>Marker for collection or container holding 16 or more items</summary>
278278
public interface ISize16Plus : ISize8Plus { }
279279

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+
280287
/// <summary>Marker for collection or container holding 4 items</summary>
281288
public struct Size2 : ISize2Plus
282289
{

0 commit comments

Comments
 (0)