MCPcopy Create free account
hub / github.com/agentforce314/clawcodex / has

Method has

src/bridge/bounded_uuid_set.py:64–65  ·  view source on GitHub ↗
(self, uuid: str)

Source from the content-addressed store, hash-verified

62 self._set.add(uuid)
63
64 def has(self, uuid: str) -> bool:
65 return uuid in self._set
66
67 def __contains__(self, uuid: object) -> bool:
68 return isinstance(uuid, str) and uuid in self._set

Callers 15

test_fifo_eviction_orderFunction · 0.95
renderNodeToOutputFunction · 0.45
isUrlCharFunction · 0.45
dispatchHoverFunction · 0.45
applyPropFunction · 0.45
commitUpdateFunction · 0.45

Calls

no outgoing calls