Returns the value expression's i-th component
Last updated 1 month ago
get_component(i: int) -> Union[Value, NoneObject]
get_component(i: int) -> Union[
Value
,
NoneObject
]
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