Instruction.is_call()

Returns True if the instruction is call instruction, otherwise returns False.

is_call -> bool

Query example

from glider import *

def query():
  return Instructions().exec(100).filter(lambda x: x.is_call())

With the Glider 1.0 update, calling the exec function returns an APIList[Instruction]. You can then use Instruction functions, which are applied to each element of the APIList[Instruction]

Output example

Last updated