MCPcopy Create free account
hub / github.com/apache/qpid-proton / extend

Method extend

python/proton/_data.py:533–535  ·  view source on GitHub ↗

Add all elements of an iterable t to the end of the list

(self, t: Iterable[str])

Source from the content-addressed store, hash-verified

531 return super(SymbolList, self).append(_check_is_symbol(v, self.raise_on_error))
532
533 def extend(self, t: Iterable[str]) -> None:
534 """ Add all elements of an iterable t to the end of the list """
535 return super(SymbolList, self).extend(self._check_list(t))
536
537 def insert(self, i: int, v: str) -> None:
538 """ Insert a value v at index i """

Callers 10

__init__Method · 0.95
testSymbolListMethod · 0.95
main.pyFile · 0.80
scanMethod · 0.80
includedMethod · 0.80
includedMethod · 0.80
includedMethod · 0.80
includedMethod · 0.80

Calls 1

_check_listMethod · 0.95

Tested by

no test coverage detected