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

Last updated