Instruction.is_cmp()
Returns True if the instruction is a comparison instruction i.e performing comparison operation/s using operators like >, <, == etc.., otherwise returns False.
Query Example
from glider import *
def query():
return Instructions().exec(1000).filter(lambda x: x.is_cmp())Output Example

Last updated