Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
run
Method · 0.45
run
Method · 0.45
stress_discard
Function · 0.45
stress_discard
Function · 0.45
stress_discard2
Function · 0.45
stress_discard
Function · 0.45
stress_discard2
Function · 0.45
Calls
1
remove
Method · 0.95
Tested by
5
stress_discard
Function · 0.36
stress_discard
Function · 0.36
stress_discard2
Function · 0.36
stress_discard
Function · 0.36
stress_discard2
Function · 0.36