ImmutableArray<T>.InsertRange Method

Definition

Overloads

InsertRange(Int32, IEnumerable<T>)

Inserts the specified values at the specified index.

InsertRange(Int32, ImmutableArray<T>)

Inserts the specified values at the specified index.

InsertRange(Int32, ReadOnlySpan<T>)

Inserts the specified values at the specified index.

InsertRange(Int32, T[])

Inserts the specified values at the specified index.

InsertRange(Int32, IEnumerable<T>)

Inserts the specified values at the specified index.

public:
 System::Collections::Immutable::ImmutableArray<T> InsertRange(int index, System::Collections::Generic::IEnumerable<T> ^ items);
public System.Collections.Immutable.ImmutableArray<T> InsertRange (int index, System.Collections.Generic.IEnumerable<T> items);
member this.InsertRange : int * seq<'T> -> System.Collections.Immutable.ImmutableArray<'T>
Public Function InsertRange (index As Integer, items As IEnumerable(Of T)) As ImmutableArray(Of T)

Parameters

index
Int32

The index at which to insert the value.

items
IEnumerable<T>

The elements to insert.

Returns

A new immutable array with the items inserted at the specified index.

Applies to

InsertRange(Int32, ImmutableArray<T>)

Inserts the specified values at the specified index.

public:
 System::Collections::Immutable::ImmutableArray<T> InsertRange(int index, System::Collections::Immutable::ImmutableArray<T> items);
public System.Collections.Immutable.ImmutableArray<T> InsertRange (int index, System.Collections.Immutable.ImmutableArray<T> items);
member this.InsertRange : int * System.Collections.Immutable.ImmutableArray<'T> -> System.Collections.Immutable.ImmutableArray<'T>
Public Function InsertRange (index As Integer, items As ImmutableArray(Of T)) As ImmutableArray(Of T)

Parameters

index
Int32

The index at which to insert the value.

items
ImmutableArray<T>

The elements to insert.

Returns

A new immutable array with the items inserted at the specified index.

Applies to

InsertRange(Int32, ReadOnlySpan<T>)

Inserts the specified values at the specified index.

public:
 System::Collections::Immutable::ImmutableArray<T> InsertRange(int index, ReadOnlySpan<T> items);
public System.Collections.Immutable.ImmutableArray<T> InsertRange (int index, ReadOnlySpan<T> items);
member this.InsertRange : int * ReadOnlySpan<'T> -> System.Collections.Immutable.ImmutableArray<'T>
Public Function InsertRange (index As Integer, items As ReadOnlySpan(Of T)) As ImmutableArray(Of T)

Parameters

index
Int32

The index at which to insert the value.

items
ReadOnlySpan<T>

The elements to insert.

Returns

The new immutable collection.

Applies to

InsertRange(Int32, T[])

Inserts the specified values at the specified index.

public:
 System::Collections::Immutable::ImmutableArray<T> InsertRange(int index, cli::array <T> ^ items);
public System.Collections.Immutable.ImmutableArray<T> InsertRange (int index, T[] items);
member this.InsertRange : int * 'T[] -> System.Collections.Immutable.ImmutableArray<'T>
Public Function InsertRange (index As Integer, items As T()) As ImmutableArray(Of T)

Parameters

index
Int32

The index at which to insert the value.

items
T[]

The elements to insert.

Returns

The new immutable collection.

Applies to