Create an access path that indicate an array item is missing. Parameters ---------- index The index of the item to access Returns ------- AccessPath The extended access path
(self, index: int)
| 199 | return self._array_item(index) |
| 200 | |
| 201 | def array_item_missing(self, index: int) -> AccessPath: |
| 202 | """Create an access path that indicate an array item is missing. |
| 203 | |
| 204 | Parameters |
| 205 | ---------- |
| 206 | index |
| 207 | The index of the item to access |
| 208 | |
| 209 | Returns |
| 210 | ------- |
| 211 | AccessPath |
| 212 | The extended access path |
| 213 | |
| 214 | """ |
| 215 | return self._array_item_missing(index) |
| 216 | |
| 217 | def map_item(self, key: Any) -> AccessPath: |
| 218 | """Create an access path to the item of the current map. |