Last updated 4 months ago
is_end_assembly() -> bool
is_end_assembly()
bool
With the Glider 1.0 update, calling the function returns an []. You can then use functions, which are applied to each element of the []
[
]
Returns true if the instruction is end_assembly instruction, otherwise returns false.
from glider import * def query(): return Instructions().exec(1000).filter(lambda x: x.is_end_assembly())
exec
APIList
Instruction