Click or drag to resize

InjectiveMapTLeft, TRightRemoveRightLeft Method (TRight, TLeft)

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

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

Parameters

right
Type: TRight
The right value for the mapping that is to be removed.
left
Type: TLeft
The left value for the mapping that is to be removed.
Remarks
This is a fast version of RemoveRightLeft(TRight) and RemoveLeftRight(TLeft). Note that invariants of the injective map will be broken if a mapping does not exist between the specified right and left 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