MCPcopy Create free account
hub / github.com/apache/tvm-ffi / array_item_missing

Method array_item_missing

python/tvm_ffi/access_path.py:201–215  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 1

Calls 1

_array_item_missingMethod · 0.95

Tested by 1