like list.extend, but for the front
(self, other: t.Any)
| 111 | self._extend.extend(other) |
| 112 | |
| 113 | def prepend(self, other: t.Any) -> None: |
| 114 | """like list.extend, but for the front""" |
| 115 | self._prepend[:0] = other |
| 116 | |
| 117 | def merge_into(self, other: t.Any) -> t.Any: |
| 118 | """ |
no outgoing calls