MCPcopy
hub / github.com/reflex-dev/reflex / __iter__

Method __iter__

tests/integration/utils.py:361–367  ·  view source on GitHub ↗

Iterate over the keys in local storage. Returns: An iterator over the items in local storage.

(self)

Source from the content-addressed store, hash-verified

359 return self.has(key)
360
361 def __iter__(self) -> Iterator[str]:
362 """Iterate over the keys in local storage.
363
364 Returns:
365 An iterator over the items in local storage.
366 """
367 return iter(self.keys())
368
369
370class SessionStorage(LocalStorage):

Callers

nothing calls this directly

Calls 1

keysMethod · 0.95

Tested by

no test coverage detected