ImmutableList.Remove<T>(IImmutableList<T>, T) Method

Definition

Removes the specified value from this list.

public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
 static System::Collections::Immutable::IImmutableList<T> ^ Remove(System::Collections::Immutable::IImmutableList<T> ^ list, T value);
public static System.Collections.Immutable.IImmutableList<T> Remove<T> (this System.Collections.Immutable.IImmutableList<T> list, T value);
static member Remove : System.Collections.Immutable.IImmutableList<'T> * 'T -> System.Collections.Immutable.IImmutableList<'T>
<Extension()>
Public Function Remove(Of T) (list As IImmutableList(Of T), value As T) As IImmutableList(Of T)

Type Parameters

T

The type of items in the list.

Parameters

list
IImmutableList<T>

The list to search.

value
T

The value to remove.

Returns

A new immutable list with the element removed, or this list if the element is not in this list.

Applies to