Check all items in list are :class:`symbol`s (or are converted to symbols).
(self, t: Iterable[Any])
| 516 | self.extend(t) |
| 517 | |
| 518 | def _check_list(self, t: Iterable[Any]) -> List[Any]: |
| 519 | """ Check all items in list are :class:`symbol`s (or are converted to symbols). """ |
| 520 | item = [] |
| 521 | if t: |
| 522 | for v in t: |
| 523 | item.append(_check_is_symbol(v, self.raise_on_error)) |
| 524 | return item |
| 525 | |
| 526 | def to_array(self): |
| 527 | return Array(UNDESCRIBED, PN_SYMBOL, *self) |
no test coverage detected