Table of Contents

Delegate ComparisonScalar<TLhs, TRhs>

Namespace
NumSharp.Backends.Kernels
Assembly
NumSharp.dll

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

lhs TLhs

Left operand value

rhs TRhs

Right operand value

Returns

bool

True if comparison holds, false otherwise

Type Parameters

TLhs

Left operand type

TRhs

Right operand type

Extension Methods