ImmutableArray<T>.Builder.Remove Method

Definition

Overloads

Remove(T)

Removes the specified element.

Remove(T, IEqualityComparer<T>)

Removes the first occurrence of the specified element from the builder. If no match is found, the builder remains unchanged.

Remove(T)

Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs

Removes the specified element.

public:
 virtual bool Remove(T element);
public bool Remove (T element);
abstract member Remove : 'T -> bool
override this.Remove : 'T -> bool
Public Function Remove (element As T) As Boolean

Parameters

element
T

The item to remove.

Returns

true if element was found and removed; otherwise, false.

Implements

Applies to

Remove(T, IEqualityComparer<T>)

Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs

Removes the first occurrence of the specified element from the builder. If no match is found, the builder remains unchanged.

public:
 bool Remove(T element, System::Collections::Generic::IEqualityComparer<T> ^ equalityComparer);
public bool Remove (T element, System.Collections.Generic.IEqualityComparer<T>? equalityComparer);
member this.Remove : 'T * System.Collections.Generic.IEqualityComparer<'T> -> bool
Public Function Remove (element As T, equalityComparer As IEqualityComparer(Of T)) As Boolean

Parameters

element
T

The element to remove.

equalityComparer
IEqualityComparer<T>

The equality comparer to use in the search. If null, Default is used.

Returns

A value indicating whether the specified element was found and removed from the collection.

Applies to