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

Last updated