Clear the set.
(self: te.Self)
| 1151 | return rv |
| 1152 | |
| 1153 | def clear(self: te.Self) -> None: |
| 1154 | """Clear the set.""" |
| 1155 | self._set.clear() |
| 1156 | self._headers.clear() |
| 1157 | |
| 1158 | if self.on_update is not None: |
| 1159 | self.on_update(self) |
| 1160 | |
| 1161 | def as_set(self, preserve_casing: bool = False) -> set[str]: |
| 1162 | """Return the set as real python set type. When calling this, all |
no test coverage detected