(self, __element: _T, /)
| 1880 | return |
| 1881 | |
| 1882 | def add(self, __element: _T, /) -> None: |
| 1883 | if __element not in self: |
| 1884 | self.col.add(self._create(__element)) |
| 1885 | |
| 1886 | # for discard and remove, choosing a more expensive check strategy rather |
| 1887 | # than call self.creator() |
no test coverage detected