Instruction.is_break()
Returns True if the instruction is break instruction, otherwise returns False.
Query Example
from glider import *
def query():
return Instructions().exec(10000).filter(lambda x: x.is_break())Output Example

Last updated