Delegate BinaryScalar<TLhs, TRhs, TOut>
Binary scalar function delegate. Used for element-by-element binary operations in broadcasting and general paths.
public delegate TOut BinaryScalar<in TLhs, TRhs, out TOut>(TLhs lhs, TRhs rhs)
Parameters
lhsTLhsLeft operand value
rhsTRhsRight operand value
Returns
- TOut
Result of binary operation
Type Parameters
TLhsLeft operand type
TRhsRight operand type
TOutResult type
- Extension Methods