MCPcopy Create free account
hub / github.com/apache/fory / pop

Method pop

python/pyfory/lib/collection.py:145–147  ·  view source on GitHub ↗
(self, key, *args)

Source from the content-addressed store, hash-verified

143 return o, value
144
145 def pop(self, key, *args):
146 self._dirty_len = True
147 return self.data.pop(IdentityWeakRef(key), *args)
148
149 def setdefault(self, key, default=None):
150 return self.data.setdefault(IdentityWeakRef(key, self._remove), default)

Callers 15

load_classFunction · 0.45
dataslotsFunction · 0.45
_canonical_decimalFunction · 0.45
referenceMethod · 0.45
register_serializerMethod · 0.45
_get_foryMethod · 0.45
remove_schemaFunction · 0.45
strong_connectFunction · 0.45

Calls 1

IdentityWeakRefClass · 0.85