Condition.is_geq()

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

Query Example

from glider import *

def query():

  instructions = Functions().with_name("log10").exec(1).instructions().if_instructions().exec(1)

  print(instructions[0].get_condition().is_geq())

  return instructions

Output Example

Last updated