Delegate ComparisonScalar<TLhs, TRhs>
Comparison scalar function delegate. Used for element-by-element comparisons returning boolean.
public delegate bool ComparisonScalar<in TLhs, in TRhs>(TLhs lhs, TRhs rhs)
Parameters
lhsTLhsLeft operand value
rhsTRhsRight operand value
Returns
- bool
True if comparison holds, false otherwise
Type Parameters
TLhsLeft operand type
TRhsRight operand type
- Extension Methods