Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/drgrib/dotmap
/ has_key
Method
has_key
dotmap/__init__.py:207–208 ·
view source on GitHub ↗
(self, key)
Source
from the content-addressed store, hash-verified
205
def
get(self, key, default=None):
206
return
self._map.get(key, default)
207
def
has_key(self, key):
208
return
key in self._map
209
def
iterkeys(self):
210
return
self._map.iterkeys()
211
def
itervalues(self):
Callers
2
test_dict_functionality
Method · 0.95
__init__.py
File · 0.80
Calls
no outgoing calls
Tested by
1
test_dict_functionality
Method · 0.76