Returns the element at the specified position in list. Args: index: Offset from where to get the element. A negative index counts backwards from the end of the list. Returns: An ee.ComputedObject.
(self, index: _arg_types.Integer)
| 227 | ) |
| 228 | |
| 229 | def get(self, index: _arg_types.Integer) -> computedobject.ComputedObject: |
| 230 | """Returns the element at the specified position in list. |
| 231 | |
| 232 | Args: |
| 233 | index: Offset from where to get the element. A negative index counts |
| 234 | backwards from the end of the list. |
| 235 | |
| 236 | Returns: |
| 237 | An ee.ComputedObject. |
| 238 | """ |
| 239 | |
| 240 | return apifunction.ApiFunction.call_(self.name() + '.get', self, index) |
| 241 | |
| 242 | def getArray(self, index: _arg_types.Integer) -> ee_array.Array: |
| 243 | """Returns the array at the specified position in list. |