Callable.end_loop_instructions()
Returns end_loop instructions of the function/modifier.
Example
from glider import *
def query():
functions = Functions().exec(500)
loop = []
for function in functions:
for loop_instruction in function.end_loop_instructions().exec():
# For each function, return the loop instructions
loop.append(loop_instruction)
return loopExample output

Last updated