MCPcopy Create free account
hub / github.com/grantjenks/python-sortedcontainers / discard

Method discard

tests/sortedcollection.py:219–223  ·  view source on GitHub ↗
(self, item)

Source from the content-addressed store, hash-verified

217 return self._items.pop()
218
219 def discard(self, item):
220 try:
221 self.remove(item)
222 except ValueError:
223 pass
224
225 def __delitem__(self, index):
226 del self._keys[index]

Callers 7

runMethod · 0.45
runMethod · 0.45
stress_discardFunction · 0.45
stress_discardFunction · 0.45
stress_discard2Function · 0.45
stress_discardFunction · 0.45
stress_discard2Function · 0.45

Calls 1

removeMethod · 0.95

Tested by 5

stress_discardFunction · 0.36
stress_discardFunction · 0.36
stress_discard2Function · 0.36
stress_discardFunction · 0.36
stress_discard2Function · 0.36