Click or drag to resize

InjectiveMapTLeft, TRightRemoveLeftRight Method (TLeft, TRight)

Removes the injective mapping between the specified left and right values.

Namespace:  Demo3D.Common
Assembly:  Demo3D.Common (in Demo3D.Common.dll) Version: 15.0.2.11458
Syntax
C#
public void RemoveLeftRight(
	TLeft left,
	TRight right
)

Parameters

left
Type: TLeft
The left value for the mapping that is to be removed.
right
Type: TRight
The right value for the mapping that is to be removed.
Remarks
This is a fast version of RemoveLeftRight(TLeft) and RemoveRightLeft(TRight). Note that invariants of the injective map will be broken if a mapping does not exist between the specified left and right values (unless neither value is mapped to any other value). The only difference between this method and RemoveRightLeft(TRight, TLeft) is the order in which the arguments are passed.
See Also