Append without any ordering behavior.
(self, entity: _T)
| 359 | self._order_entity(len(self) - 1, entity, self.reorder_on_append) |
| 360 | |
| 361 | def _raw_append(self, entity: _T) -> None: |
| 362 | """Append without any ordering behavior.""" |
| 363 | |
| 364 | super().append(entity) |
| 365 | |
| 366 | _raw_append = collection.adds(1)(_raw_append) |
| 367 |