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

Last updated