Add all elements of an iterable t to the end of the list
(self, t: Iterable[str])
| 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 """ |
no test coverage detected