Returns true if the instruction is return instruction, otherwise returns false.
Last updated 4 months ago
is_return() -> bool
is_return()
bool
from glider import * def query(): return Instructions().exec(100).filter(lambda x: x.is_return())
With the Glider 1.0 update, calling the function returns an []. You can then use functions, which are applied to each element of the []
[
]
exec
APIList
Instruction