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

Last updated