MCPcopy Create free account
hub / github.com/KentBeck/BPlusTree3 / values

Method values

python/bplustree/__init__.py:36–39  ·  view source on GitHub ↗

Return iterator over values.

(self)

Source from the content-addressed store, hash-verified

34 return default
35
36 def values(self):
37 """Return iterator over values."""
38 for key, value in self.items():
39 yield value
40
41 def clear(self):
42 """Remove all items from the tree."""

Callers 4

test_values_iteratorMethod · 0.95
demo_api_compatibilityFunction · 0.95
mainFunction · 0.95
benchmark_memory_usageFunction · 0.95

Calls 1

itemsMethod · 0.95

Tested by 1

test_values_iteratorMethod · 0.76