MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __ior__

Method __ior__

lib/sqlalchemy/util/_collections_cy.py:171–175  ·  view source on GitHub ↗
(
        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

Calls 1

updateMethod · 0.95

Tested by

no test coverage detected