@@ -80,7 +80,7 @@ private SpanOwner(int length, ArrayPool<T> pool, AllocationMode mode)
8080 public static SpanOwner < T > Empty
8181 {
8282 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
83- get => new SpanOwner < T > ( 0 , ArrayPool < T > . Shared , AllocationMode . Default ) ;
83+ get => new ( 0 , ArrayPool < T > . Shared , AllocationMode . Default ) ;
8484 }
8585
8686 /// <summary>
@@ -92,7 +92,7 @@ public static SpanOwner<T> Empty
9292 /// <remarks>This method is just a proxy for the <see langword="private"/> constructor, for clarity.</remarks>
9393 [ Pure ]
9494 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
95- public static SpanOwner < T > Allocate ( int size ) => new SpanOwner < T > ( size , ArrayPool < T > . Shared , AllocationMode . Default ) ;
95+ public static SpanOwner < T > Allocate ( int size ) => new ( size , ArrayPool < T > . Shared , AllocationMode . Default ) ;
9696
9797 /// <summary>
9898 /// Creates a new <see cref="SpanOwner{T}"/> instance with the specified parameters.
@@ -104,7 +104,7 @@ public static SpanOwner<T> Empty
104104 /// <remarks>This method is just a proxy for the <see langword="private"/> constructor, for clarity.</remarks>
105105 [ Pure ]
106106 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
107- public static SpanOwner < T > Allocate ( int size , ArrayPool < T > pool ) => new SpanOwner < T > ( size , pool , AllocationMode . Default ) ;
107+ public static SpanOwner < T > Allocate ( int size , ArrayPool < T > pool ) => new ( size , pool , AllocationMode . Default ) ;
108108
109109 /// <summary>
110110 /// Creates a new <see cref="SpanOwner{T}"/> instance with the specified parameters.
@@ -116,7 +116,7 @@ public static SpanOwner<T> Empty
116116 /// <remarks>This method is just a proxy for the <see langword="private"/> constructor, for clarity.</remarks>
117117 [ Pure ]
118118 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
119- public static SpanOwner < T > Allocate ( int size , AllocationMode mode ) => new SpanOwner < T > ( size , ArrayPool < T > . Shared , mode ) ;
119+ public static SpanOwner < T > Allocate ( int size , AllocationMode mode ) => new ( size , ArrayPool < T > . Shared , mode ) ;
120120
121121 /// <summary>
122122 /// Creates a new <see cref="SpanOwner{T}"/> instance with the specified parameters.
@@ -129,7 +129,7 @@ public static SpanOwner<T> Empty
129129 /// <remarks>This method is just a proxy for the <see langword="private"/> constructor, for clarity.</remarks>
130130 [ Pure ]
131131 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
132- public static SpanOwner < T > Allocate ( int size , ArrayPool < T > pool , AllocationMode mode ) => new SpanOwner < T > ( size , pool , mode ) ;
132+ public static SpanOwner < T > Allocate ( int size , ArrayPool < T > pool , AllocationMode mode ) => new ( size , pool , mode ) ;
133133
134134 /// <summary>
135135 /// Gets the number of items in the current instance
@@ -183,7 +183,7 @@ public ref T DangerousGetReference()
183183 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
184184 public ArraySegment < T > DangerousGetArray ( )
185185 {
186- return new ArraySegment < T > ( array ! , 0 , this . length ) ;
186+ return new ( array ! , 0 , this . length ) ;
187187 }
188188
189189 /// <summary>
0 commit comments