Condition.is_neq()

Returns true if it is a non-equality check, otherwise returns false.

is_neq() → bool

Query Example

from glider import *


def query():
  instructions = (
    Instructions()
    .if_instructions()
    .exec(100)
    .filter(lambda instruction : instruction.get_condition().is_neq())
  )

  return instructions

Example Output

Last updated