Returns the value expression's i-th component
Last updated 6 months ago
get_component(i: int) -> Union[, ]
get_component(i: int) -> Union[
,
]
from glider import * def query(): instructions = ( Instructions() .exec(1,1) ) for instruction in instructions: print(instruction.get_value().get_component(0)) print(instruction.get_value().get_component(0).expression) return instructions
Value
NoneObject