Callable.start_loop_instructions()
Returns start_loop instructions of the function/modifier.
Example
from glider import *
def query():
functions = Functions().exec(100)
loop_instructions = []
for function in functions:
for instruction in function.start_loop_instructions().exec():
# Return the starting loop instructions for each function
loop_instructions.append(instruction)
return loop_instructionsExample output

Last updated