Panther Search Documentation Tutorials Devlogs Downloads Source Code

Documentation > Panther Documentation > Intrinsics > @neq

@neq

Panther
Documentation


1: func @neq = <{T: Type}> (lhs: T, rhs: T) -> Bool;

  Calculate non-equality.

Template Parameters

  T: type of arguments and output - must be primitive (excluding Void), vector of primitive (excluding Void), or pointer.

Parameters

  lhs: left-hand-side value of operation

  rhs: right-hand-side value of operation

Return Value

  Returns true if values are not equal

Example

(TODO)

See Also

@eq Calculate equality