IImmutableList<T>.RemoveRange 메서드

정의

오버로드

Name Description
RemoveRange(IEnumerable<T>, IEqualityComparer<T>)

목록에서 지정된 개체를 제거합니다.

RemoveRange(Int32, Int32)

에서 요소 IImmutableList<T>범위를 제거합니다.

RemoveRange(IEnumerable<T>, IEqualityComparer<T>)

Source:
IImmutableList.cs
Source:
IImmutableList.cs
Source:
IImmutableList.cs
Source:
SortedInt32KeyNode.Enumerator.cs

목록에서 지정된 개체를 제거합니다.

public:
 System::Collections::Immutable::IImmutableList<T> ^ RemoveRange(System::Collections::Generic::IEnumerable<T> ^ items, System::Collections::Generic::IEqualityComparer<T> ^ equalityComparer);
public System.Collections.Immutable.IImmutableList<T> RemoveRange(System.Collections.Generic.IEnumerable<T> items, System.Collections.Generic.IEqualityComparer<T> equalityComparer);
public System.Collections.Immutable.IImmutableList<T> RemoveRange(System.Collections.Generic.IEnumerable<T> items, System.Collections.Generic.IEqualityComparer<T>? equalityComparer);
abstract member RemoveRange : seq<'T> * System.Collections.Generic.IEqualityComparer<'T> -> System.Collections.Immutable.IImmutableList<'T>
Public Function RemoveRange (items As IEnumerable(Of T), equalityComparer As IEqualityComparer(Of T)) As IImmutableList(Of T)

매개 변수

items
IEnumerable<T>

목록에서 제거할 개체입니다.

equalityComparer
IEqualityComparer<T>

목록의 개체와 일치하는지 items 확인하는 데 사용할 같음 비교자입니다.

반품

목록에서 일치하는 개체인 경우 items 지정된 개체가 제거된 변경할 수 없는 새 목록입니다.

적용 대상

RemoveRange(Int32, Int32)

Source:
IImmutableList.cs
Source:
IImmutableList.cs
Source:
IImmutableList.cs
Source:
SortedInt32KeyNode.Enumerator.cs

에서 요소 IImmutableList<T>범위를 제거합니다.

public:
 System::Collections::Immutable::IImmutableList<T> ^ RemoveRange(int index, int count);
public System.Collections.Immutable.IImmutableList<T> RemoveRange(int index, int count);
abstract member RemoveRange : int * int -> System.Collections.Immutable.IImmutableList<'T>
Public Function RemoveRange (index As Integer, count As Integer) As IImmutableList(Of T)

매개 변수

index
Int32

제거할 요소 범위의 시작 인덱스(0부터 시작)입니다.

count
Int32

제거할 요소의 수입니다.

반품

요소가 제거된 변경할 수 없는 새 목록입니다.

적용 대상