Click or drag to resize

InjectiveMapTLeft, TRightContainsLeftRight Method

Determines whether an injective mapping exists 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 bool ContainsLeftRight(
	TLeft left,
	TRight right
)

Parameters

left
Type: TLeft
The left value.
right
Type: TRight
The right value.

Return Value

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