Instruction.is_continue()
Returns True if the instruction is CONTINUE instruction, otherwise returns False.
Query Example
from glider import *
def query():
return Instructions().exec(100000).filter(lambda x: x.is_continue())Output Example

Last updated