@@ -207,7 +207,7 @@ public static partial class ImmutableArray
207
207
public static System . Collections . Immutable . ImmutableArray < T > Create < T > ( T item1 , T item2 , T item3 , T item4 ) { throw null ; }
208
208
public static System . Collections . Immutable . ImmutableArray < T > Create < T > ( params T [ ] ? items ) { throw null ; }
209
209
public static System . Collections . Immutable . ImmutableArray < T > Create < T > ( T [ ] items , int start , int length ) { throw null ; }
210
- public static System . Collections . Immutable . ImmutableArray < T > Create < T > ( params System . ReadOnlySpan < T > items ) { throw null ; }
210
+ public static System . Collections . Immutable . ImmutableArray < T > Create < T > ( System . ReadOnlySpan < T > items ) { throw null ; }
211
211
public static System . Collections . Immutable . ImmutableArray < T > Create < T > ( System . Span < T > items ) { throw null ; }
212
212
public static System . Collections . Immutable . ImmutableArray < TSource > ToImmutableArray < TSource > ( this System . Collections . Generic . IEnumerable < TSource > items ) { throw null ; }
213
213
public static System . Collections . Immutable . ImmutableArray < TSource > ToImmutableArray < TSource > ( this System . Collections . Immutable . ImmutableArray < TSource > . Builder builder ) { throw null ; }
@@ -244,7 +244,7 @@ public static partial class ImmutableArray
244
244
public System . Collections . Immutable . ImmutableArray < T > AddRange < TDerived > ( TDerived [ ] items ) where TDerived : T { throw null ; }
245
245
public System . Collections . Immutable . ImmutableArray < T > AddRange ( ImmutableArray < T > items , int length ) { throw null ; }
246
246
public System . Collections . Immutable . ImmutableArray < T > AddRange < TDerived > ( ImmutableArray < TDerived > items ) where TDerived : T { throw null ; }
247
- public System . Collections . Immutable . ImmutableArray < T > AddRange ( params System . ReadOnlySpan < T > items ) { throw null ; }
247
+ public System . Collections . Immutable . ImmutableArray < T > AddRange ( System . ReadOnlySpan < T > items ) { throw null ; }
248
248
public System . Collections . Immutable . ImmutableArray < T > AddRange ( params T [ ] items ) { throw null ; }
249
249
public System . ReadOnlyMemory < T > AsMemory ( ) { throw null ; }
250
250
public System . ReadOnlySpan < T > AsSpan ( ) { throw null ; }
@@ -284,7 +284,7 @@ public void CopyTo(System.Span<T> destination) { }
284
284
public System . Collections . Immutable . ImmutableArray < T > InsertRange ( int index , System . Collections . Generic . IEnumerable < T > items ) { throw null ; }
285
285
public System . Collections . Immutable . ImmutableArray < T > InsertRange ( int index , System . Collections . Immutable . ImmutableArray < T > items ) { throw null ; }
286
286
public System . Collections . Immutable . ImmutableArray < T > InsertRange ( int index , T [ ] items ) { throw null ; }
287
- public System . Collections . Immutable . ImmutableArray < T > InsertRange ( int index , params System . ReadOnlySpan < T > items ) { throw null ; }
287
+ public System . Collections . Immutable . ImmutableArray < T > InsertRange ( int index , System . ReadOnlySpan < T > items ) { throw null ; }
288
288
public ref readonly T ItemRef ( int index ) { throw null ; }
289
289
public int LastIndexOf ( T item ) { throw null ; }
290
290
public int LastIndexOf ( T item , int startIndex ) { throw null ; }
@@ -362,8 +362,8 @@ public void AddRange(T[] items, int length) { }
362
362
public void AddRange < TDerived > ( System . Collections . Immutable . ImmutableArray < TDerived > items ) where TDerived : T { }
363
363
public void AddRange < TDerived > ( System . Collections . Immutable . ImmutableArray < TDerived > . Builder items ) where TDerived : T { }
364
364
public void AddRange < TDerived > ( TDerived [ ] items ) where TDerived : T { }
365
- public void AddRange ( params System . ReadOnlySpan < T > items ) { }
366
- public void AddRange < TDerived > ( params System . ReadOnlySpan < TDerived > items ) where TDerived : T { }
365
+ public void AddRange ( System . ReadOnlySpan < T > items ) { }
366
+ public void AddRange < TDerived > ( System . ReadOnlySpan < TDerived > items ) where TDerived : T { }
367
367
public void Clear ( ) { }
368
368
public bool Contains ( T item ) { throw null ; }
369
369
public void CopyTo ( T [ ] array , int index ) { }
@@ -562,10 +562,10 @@ public static partial class ImmutableHashSet
562
562
public static System . Collections . Immutable . ImmutableHashSet < T > Create < T > ( System . Collections . Generic . IEqualityComparer < T > ? equalityComparer ) { throw null ; }
563
563
public static System . Collections . Immutable . ImmutableHashSet < T > Create < T > ( System . Collections . Generic . IEqualityComparer < T > ? equalityComparer , T item ) { throw null ; }
564
564
public static System . Collections . Immutable . ImmutableHashSet < T > Create < T > ( System . Collections . Generic . IEqualityComparer < T > ? equalityComparer , params T [ ] items ) { throw null ; }
565
- public static System . Collections . Immutable . ImmutableHashSet < T > Create < T > ( System . Collections . Generic . IEqualityComparer < T > ? equalityComparer , params System . ReadOnlySpan < T > items ) { throw null ; }
565
+ public static System . Collections . Immutable . ImmutableHashSet < T > Create < T > ( System . Collections . Generic . IEqualityComparer < T > ? equalityComparer , System . ReadOnlySpan < T > items ) { throw null ; }
566
566
public static System . Collections . Immutable . ImmutableHashSet < T > Create < T > ( T item ) { throw null ; }
567
567
public static System . Collections . Immutable . ImmutableHashSet < T > Create < T > ( params T [ ] items ) { throw null ; }
568
- public static System . Collections . Immutable . ImmutableHashSet < T > Create < T > ( params System . ReadOnlySpan < T > items ) { throw null ; }
568
+ public static System . Collections . Immutable . ImmutableHashSet < T > Create < T > ( System . ReadOnlySpan < T > items ) { throw null ; }
569
569
public static System . Collections . Immutable . ImmutableHashSet < TSource > ToImmutableHashSet < TSource > ( this System . Collections . Generic . IEnumerable < TSource > source ) { throw null ; }
570
570
public static System . Collections . Immutable . ImmutableHashSet < TSource > ToImmutableHashSet < TSource > ( this System . Collections . Generic . IEnumerable < TSource > source , System . Collections . Generic . IEqualityComparer < TSource > ? equalityComparer ) { throw null ; }
571
571
public static System . Collections . Immutable . ImmutableHashSet < TSource > ToImmutableHashSet < TSource > ( this System . Collections . Immutable . ImmutableHashSet < TSource > . Builder builder ) { throw null ; }
@@ -691,7 +691,7 @@ public static partial class ImmutableList
691
691
public static System . Collections . Immutable . ImmutableList < T > Create < T > ( ) { throw null ; }
692
692
public static System . Collections . Immutable . ImmutableList < T > Create < T > ( T item ) { throw null ; }
693
693
public static System . Collections . Immutable . ImmutableList < T > Create < T > ( params T [ ] items ) { throw null ; }
694
- public static System . Collections . Immutable . ImmutableList < T > Create < T > ( params System . ReadOnlySpan < T > items ) { throw null ; }
694
+ public static System . Collections . Immutable . ImmutableList < T > Create < T > ( System . ReadOnlySpan < T > items ) { throw null ; }
695
695
public static int IndexOf < T > ( this System . Collections . Immutable . IImmutableList < T > list , T item ) { throw null ; }
696
696
public static int IndexOf < T > ( this System . Collections . Immutable . IImmutableList < T > list , T item , System . Collections . Generic . IEqualityComparer < T > ? equalityComparer ) { throw null ; }
697
697
public static int IndexOf < T > ( this System . Collections . Immutable . IImmutableList < T > list , T item , int startIndex ) { throw null ; }
@@ -887,7 +887,7 @@ public static partial class ImmutableQueue
887
887
public static System . Collections . Immutable . ImmutableQueue < T > Create < T > ( ) { throw null ; }
888
888
public static System . Collections . Immutable . ImmutableQueue < T > Create < T > ( T item ) { throw null ; }
889
889
public static System . Collections . Immutable . ImmutableQueue < T > Create < T > ( params T [ ] items ) { throw null ; }
890
- public static System . Collections . Immutable . ImmutableQueue < T > Create < T > ( params System . ReadOnlySpan < T > items ) { throw null ; }
890
+ public static System . Collections . Immutable . ImmutableQueue < T > Create < T > ( System . ReadOnlySpan < T > items ) { throw null ; }
891
891
public static System . Collections . Immutable . IImmutableQueue < T > Dequeue < T > ( this System . Collections . Immutable . IImmutableQueue < T > queue , out T value ) { throw null ; }
892
892
}
893
893
[ System . Runtime . CompilerServices . CollectionBuilderAttribute ( typeof ( System . Collections . Immutable . ImmutableQueue ) , "Create" ) ]
@@ -1063,10 +1063,10 @@ public static partial class ImmutableSortedSet
1063
1063
public static System . Collections . Immutable . ImmutableSortedSet < T > Create < T > ( System . Collections . Generic . IComparer < T > ? comparer ) { throw null ; }
1064
1064
public static System . Collections . Immutable . ImmutableSortedSet < T > Create < T > ( System . Collections . Generic . IComparer < T > ? comparer , T item ) { throw null ; }
1065
1065
public static System . Collections . Immutable . ImmutableSortedSet < T > Create < T > ( System . Collections . Generic . IComparer < T > ? comparer , params T [ ] items ) { throw null ; }
1066
- public static System . Collections . Immutable . ImmutableSortedSet < T > Create < T > ( System . Collections . Generic . IComparer < T > ? comparer , params System . ReadOnlySpan < T > items ) { throw null ; }
1066
+ public static System . Collections . Immutable . ImmutableSortedSet < T > Create < T > ( System . Collections . Generic . IComparer < T > ? comparer , System . ReadOnlySpan < T > items ) { throw null ; }
1067
1067
public static System . Collections . Immutable . ImmutableSortedSet < T > Create < T > ( T item ) { throw null ; }
1068
1068
public static System . Collections . Immutable . ImmutableSortedSet < T > Create < T > ( params T [ ] items ) { throw null ; }
1069
- public static System . Collections . Immutable . ImmutableSortedSet < T > Create < T > ( params System . ReadOnlySpan < T > items ) { throw null ; }
1069
+ public static System . Collections . Immutable . ImmutableSortedSet < T > Create < T > ( System . ReadOnlySpan < T > items ) { throw null ; }
1070
1070
public static System . Collections . Immutable . ImmutableSortedSet < TSource > ToImmutableSortedSet < TSource > ( this System . Collections . Generic . IEnumerable < TSource > source ) { throw null ; }
1071
1071
public static System . Collections . Immutable . ImmutableSortedSet < TSource > ToImmutableSortedSet < TSource > ( this System . Collections . Generic . IEnumerable < TSource > source , System . Collections . Generic . IComparer < TSource > ? comparer ) { throw null ; }
1072
1072
public static System . Collections . Immutable . ImmutableSortedSet < TSource > ToImmutableSortedSet < TSource > ( this System . Collections . Immutable . ImmutableSortedSet < TSource > . Builder builder ) { throw null ; }
@@ -1198,7 +1198,7 @@ public static partial class ImmutableStack
1198
1198
public static System . Collections . Immutable . ImmutableStack < T > Create < T > ( ) { throw null ; }
1199
1199
public static System . Collections . Immutable . ImmutableStack < T > Create < T > ( T item ) { throw null ; }
1200
1200
public static System . Collections . Immutable . ImmutableStack < T > Create < T > ( params T [ ] items ) { throw null ; }
1201
- public static System . Collections . Immutable . ImmutableStack < T > Create < T > ( params System . ReadOnlySpan < T > items ) { throw null ; }
1201
+ public static System . Collections . Immutable . ImmutableStack < T > Create < T > ( System . ReadOnlySpan < T > items ) { throw null ; }
1202
1202
public static System . Collections . Immutable . IImmutableStack < T > Pop < T > ( this System . Collections . Immutable . IImmutableStack < T > stack , out T value ) { throw null ; }
1203
1203
}
1204
1204
[ System . Runtime . CompilerServices . CollectionBuilderAttribute ( typeof ( System . Collections . Immutable . ImmutableStack ) , "Create" ) ]
0 commit comments