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

Method values

python/tvm_ffi/container.py:734–736  ·  view source on GitHub ↗

Return a dynamic view of the dict's values.

(self)

Source from the content-addressed store, hash-verified

732 return KeysView(self, _ffi_api.DictForwardIterFunctor)
733
734 def values(self) -> ValuesView[V]:
735 """Return a dynamic view of the dict's values."""
736 return ValuesView(self, _ffi_api.DictForwardIterFunctor)
737
738 def items(self) -> ItemsView[K, V]:
739 """Get the items from the dict."""

Calls 1

ValuesViewClass · 0.85