Method
__ior__
(
self: OrderedSet[Union[_T, _S]], iterable: AbstractSet[_S]
)
Source from the content-addressed store, hash-verified
| 169 | set.add(self, element) |
| 170 | |
| 171 | def __ior__( |
| 172 | self: OrderedSet[Union[_T, _S]], iterable: AbstractSet[_S] |
| 173 | ) -> OrderedSet[Union[_T, _S]]: |
| 174 | self.update(iterable) |
| 175 | return self |
| 176 | |
| 177 | # @cython.ccall # cdef function cannot have star argument |
| 178 | def union(self, *other: Iterable[_S]) -> OrderedSet[Union[_T, _S]]: |
Callers
nothing calls this directly
Tested by
no test coverage detected