Instruction.is_if_loop()
Returns true if the instruction is if_loop instruction, otherwise returns false.
Query Example
from glider import *
def query():
return Instructions().exec(1000).filter(lambda x: x.is_if_loop())Output Example

Last updated