MCPcopy Index your code
hub / github.com/clips/pattern / extend

Method extend

pattern/db/__init__.py:1929–1930  ·  view source on GitHub ↗
(self, rows, default=None)

Source from the content-addressed store, hash-verified

1927 def append(self, row, default=None):
1928 self._datasheet.append(row, default)
1929 def extend(self, rows, default=None):
1930 self._datasheet.extend(rows, default)
1931 def remove(self, row):
1932 self._datasheet.remove(row)
1933 def pop(self, i):

Callers

nothing calls this directly

Calls 1

extendMethod · 0.45

Tested by

no test coverage detected