@@ -207,7 +207,7 @@ public static partial class ImmutableArray
207207 public static System . Collections . Immutable . ImmutableArray < T > Create < T > ( T item1 , T item2 , T item3 , T item4 ) { throw null ; }
208208 public static System . Collections . Immutable . ImmutableArray < T > Create < T > ( params T [ ] ? items ) { throw null ; }
209209 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 > ( System . ReadOnlySpan < T > items ) { throw null ; }
210+ public static System . Collections . Immutable . ImmutableArray < T > Create < T > ( params System . ReadOnlySpan < T > items ) { throw null ; }
211211 public static System . Collections . Immutable . ImmutableArray < T > Create < T > ( System . Span < T > items ) { throw null ; }
212212 public static System . Collections . Immutable . ImmutableArray < TSource > ToImmutableArray < TSource > ( this System . Collections . Generic . IEnumerable < TSource > items ) { throw null ; }
213213 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
244244 public System . Collections . Immutable . ImmutableArray < T > AddRange < TDerived > ( TDerived [ ] items ) where TDerived : T { throw null ; }
245245 public System . Collections . Immutable . ImmutableArray < T > AddRange ( ImmutableArray < T > items , int length ) { throw null ; }
246246 public System . Collections . Immutable . ImmutableArray < T > AddRange < TDerived > ( ImmutableArray < TDerived > items ) where TDerived : T { throw null ; }
247- public System . Collections . Immutable . ImmutableArray < T > AddRange ( System . ReadOnlySpan < T > items ) { throw null ; }
247+ public System . Collections . Immutable . ImmutableArray < T > AddRange ( params System . ReadOnlySpan < T > items ) { throw null ; }
248248 public System . Collections . Immutable . ImmutableArray < T > AddRange ( params T [ ] items ) { throw null ; }
249249 public System . ReadOnlyMemory < T > AsMemory ( ) { throw null ; }
250250 public System . ReadOnlySpan < T > AsSpan ( ) { throw null ; }
@@ -284,7 +284,7 @@ public void CopyTo(System.Span<T> destination) { }
284284 public System . Collections . Immutable . ImmutableArray < T > InsertRange ( int index , System . Collections . Generic . IEnumerable < T > items ) { throw null ; }
285285 public System . Collections . Immutable . ImmutableArray < T > InsertRange ( int index , System . Collections . Immutable . ImmutableArray < T > items ) { throw null ; }
286286 public System . Collections . Immutable . ImmutableArray < T > InsertRange ( int index , T [ ] items ) { throw null ; }
287- public System . Collections . Immutable . ImmutableArray < T > InsertRange ( int index , System . ReadOnlySpan < T > items ) { throw null ; }
287+ public System . Collections . Immutable . ImmutableArray < T > InsertRange ( int index , params System . ReadOnlySpan < T > items ) { throw null ; }
288288 public ref readonly T ItemRef ( int index ) { throw null ; }
289289 public int LastIndexOf ( T item ) { throw null ; }
290290 public int LastIndexOf ( T item , int startIndex ) { throw null ; }
@@ -362,8 +362,8 @@ public void AddRange(T[] items, int length) { }
362362 public void AddRange < TDerived > ( System . Collections . Immutable . ImmutableArray < TDerived > items ) where TDerived : T { }
363363 public void AddRange < TDerived > ( System . Collections . Immutable . ImmutableArray < TDerived > . Builder items ) where TDerived : T { }
364364 public void AddRange < TDerived > ( 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 { }
365+ public void AddRange ( params System . ReadOnlySpan < T > items ) { }
366+ public void AddRange < TDerived > ( params System . ReadOnlySpan < TDerived > items ) where TDerived : T { }
367367 public void Clear ( ) { }
368368 public bool Contains ( T item ) { throw null ; }
369369 public void CopyTo ( T [ ] array , int index ) { }
@@ -562,10 +562,10 @@ public static partial class ImmutableHashSet
562562 public static System . Collections . Immutable . ImmutableHashSet < T > Create < T > ( System . Collections . Generic . IEqualityComparer < T > ? equalityComparer ) { throw null ; }
563563 public static System . Collections . Immutable . ImmutableHashSet < T > Create < T > ( System . Collections . Generic . IEqualityComparer < T > ? equalityComparer , T item ) { throw null ; }
564564 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 , System . ReadOnlySpan < 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 ; }
566566 public static System . Collections . Immutable . ImmutableHashSet < T > Create < T > ( T item ) { throw null ; }
567567 public static System . Collections . Immutable . ImmutableHashSet < T > Create < T > ( params T [ ] items ) { throw null ; }
568- public static System . Collections . Immutable . ImmutableHashSet < T > Create < T > ( System . ReadOnlySpan < T > items ) { throw null ; }
568+ public static System . Collections . Immutable . ImmutableHashSet < T > Create < T > ( params System . ReadOnlySpan < T > items ) { throw null ; }
569569 public static System . Collections . Immutable . ImmutableHashSet < TSource > ToImmutableHashSet < TSource > ( this System . Collections . Generic . IEnumerable < TSource > source ) { throw null ; }
570570 public static System . Collections . Immutable . ImmutableHashSet < TSource > ToImmutableHashSet < TSource > ( this System . Collections . Generic . IEnumerable < TSource > source , System . Collections . Generic . IEqualityComparer < TSource > ? equalityComparer ) { throw null ; }
571571 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
691691 public static System . Collections . Immutable . ImmutableList < T > Create < T > ( ) { throw null ; }
692692 public static System . Collections . Immutable . ImmutableList < T > Create < T > ( T item ) { throw null ; }
693693 public static System . Collections . Immutable . ImmutableList < T > Create < T > ( params T [ ] items ) { throw null ; }
694- public static System . Collections . Immutable . ImmutableList < T > Create < T > ( System . ReadOnlySpan < T > items ) { throw null ; }
694+ public static System . Collections . Immutable . ImmutableList < T > Create < T > ( params System . ReadOnlySpan < T > items ) { throw null ; }
695695 public static int IndexOf < T > ( this System . Collections . Immutable . IImmutableList < T > list , T item ) { throw null ; }
696696 public static int IndexOf < T > ( this System . Collections . Immutable . IImmutableList < T > list , T item , System . Collections . Generic . IEqualityComparer < T > ? equalityComparer ) { throw null ; }
697697 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
887887 public static System . Collections . Immutable . ImmutableQueue < T > Create < T > ( ) { throw null ; }
888888 public static System . Collections . Immutable . ImmutableQueue < T > Create < T > ( T item ) { throw null ; }
889889 public static System . Collections . Immutable . ImmutableQueue < T > Create < T > ( params T [ ] items ) { throw null ; }
890- public static System . Collections . Immutable . ImmutableQueue < T > Create < T > ( System . ReadOnlySpan < T > items ) { throw null ; }
890+ public static System . Collections . Immutable . ImmutableQueue < T > Create < T > ( params System . ReadOnlySpan < T > items ) { throw null ; }
891891 public static System . Collections . Immutable . IImmutableQueue < T > Dequeue < T > ( this System . Collections . Immutable . IImmutableQueue < T > queue , out T value ) { throw null ; }
892892 }
893893 [ System . Runtime . CompilerServices . CollectionBuilderAttribute ( typeof ( System . Collections . Immutable . ImmutableQueue ) , "Create" ) ]
@@ -1063,10 +1063,10 @@ public static partial class ImmutableSortedSet
10631063 public static System . Collections . Immutable . ImmutableSortedSet < T > Create < T > ( System . Collections . Generic . IComparer < T > ? comparer ) { throw null ; }
10641064 public static System . Collections . Immutable . ImmutableSortedSet < T > Create < T > ( System . Collections . Generic . IComparer < T > ? comparer , T item ) { throw null ; }
10651065 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 , System . ReadOnlySpan < 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 ; }
10671067 public static System . Collections . Immutable . ImmutableSortedSet < T > Create < T > ( T item ) { throw null ; }
10681068 public static System . Collections . Immutable . ImmutableSortedSet < T > Create < T > ( params T [ ] items ) { throw null ; }
1069- public static System . Collections . Immutable . ImmutableSortedSet < T > Create < T > ( System . ReadOnlySpan < T > items ) { throw null ; }
1069+ public static System . Collections . Immutable . ImmutableSortedSet < T > Create < T > ( params System . ReadOnlySpan < T > items ) { throw null ; }
10701070 public static System . Collections . Immutable . ImmutableSortedSet < TSource > ToImmutableSortedSet < TSource > ( this System . Collections . Generic . IEnumerable < TSource > source ) { throw null ; }
10711071 public static System . Collections . Immutable . ImmutableSortedSet < TSource > ToImmutableSortedSet < TSource > ( this System . Collections . Generic . IEnumerable < TSource > source , System . Collections . Generic . IComparer < TSource > ? comparer ) { throw null ; }
10721072 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
11981198 public static System . Collections . Immutable . ImmutableStack < T > Create < T > ( ) { throw null ; }
11991199 public static System . Collections . Immutable . ImmutableStack < T > Create < T > ( T item ) { throw null ; }
12001200 public static System . Collections . Immutable . ImmutableStack < T > Create < T > ( params T [ ] items ) { throw null ; }
1201- public static System . Collections . Immutable . ImmutableStack < T > Create < T > ( System . ReadOnlySpan < T > items ) { throw null ; }
1201+ public static System . Collections . Immutable . ImmutableStack < T > Create < T > ( params System . ReadOnlySpan < T > items ) { throw null ; }
12021202 public static System . Collections . Immutable . IImmutableStack < T > Pop < T > ( this System . Collections . Immutable . IImmutableStack < T > stack , out T value ) { throw null ; }
12031203 }
12041204 [ System . Runtime . CompilerServices . CollectionBuilderAttribute ( typeof ( System . Collections . Immutable . ImmutableStack ) , "Create" ) ]
0 commit comments