Returns True if the instruction is call instruction, otherwise returns False.
Last updated 3 months ago
is_call -> bool
is_call
bool
from glider import * def query(): return Instructions().exec(100).filter(lambda x: x.is_call())
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