Click or drag to resize

InjectiveMapTLeft, TRightContainsRightLeft Method

Determines whether an injective mapping exists between the specified right and left values.

Namespace: Demo3D.Common
Assembly: Demo3D.Common (in Demo3D.Common.dll) Version: 19.00.00
Syntax
C#
public bool ContainsRightLeft(
	TRight right,
	TLeft left
)

Parameters

right  TRight
The right value.
left  TLeft
The left value.

Return Value

Boolean
True if an injective mapping exists between the specified right and left values, false otherwise.
Remarks
The only difference between this method and ContainsLeftRight(TLeft, TRight) is the order in which the arguments are passed.
See Also