Method RemoveLeft
RemoveLeft(TLeft)
Removes an association from the map given the specified left value.
Declaration
public bool RemoveLeft(TLeft leftValue)
Parameters
| Type | Name | Description |
|---|---|---|
| TLeft | leftValue |
Returns
| Type | Description |
|---|---|
| bool | true if the association with the given left value is successfully found and removed, otherwise false. |
Implements
RemoveLeft(TLeft, out TRight)
Removes an association from the map given the specified left value.
Declaration
public bool RemoveLeft(TLeft leftValue, out TRight rightValue)
Parameters
| Type | Name | Description |
|---|---|---|
| TLeft | leftValue | |
| TRight | rightValue |
Returns
| Type | Description |
|---|---|
| bool | true if the association with the given left value is successfully found and removed, otherwise false. |