Condition.is_gr()

Returns true if it is ">" check, otherwise returns false.

Query Example

from glider import *

def query():
  instructions = Instructions().if_instructions().exec(10).filter(lambda instruction : instruction.get_condition().is_gr())

  return instructions

Output Example

Last updated