MCPcopy Create free account
hub / github.com/cdgriffith/Box / extend

Method extend

box/box_list.py:139–141  ·  view source on GitHub ↗
(self, iterable)

Source from the content-addressed store, hash-verified

137 super().append(self._convert(p_object))
138
139 def extend(self, iterable):
140 for item in iterable:
141 self.append(item)
142
143 def insert(self, index, p_object):
144 super().insert(index, self._convert(p_object))

Callers 4

test_box_listMethod · 0.95
test_frozen_listMethod · 0.95
__setitem__Method · 0.95
convert_and_setMethod · 0.80

Calls 1

appendMethod · 0.95

Tested by 2

test_box_listMethod · 0.76
test_frozen_listMethod · 0.76