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

Method update

tests/sortedcollection.py:206–208  ·  view source on GitHub ↗
(self, iterable)

Source from the content-addressed store, hash-verified

204 add = insert
205
206 def update(self, iterable):
207 for value in iterable:
208 self.insert(value)
209
210 def bisect(self, item):
211 key = self._key(item)

Callers

nothing calls this directly

Calls 1

insertMethod · 0.95

Tested by

no test coverage detected