MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __or__

Method __or__

lib/sqlalchemy/util/_collections_cy.py:382–385  ·  view source on GitHub ↗
(self, other: Any)

Source from the content-addressed store, hash-verified

380 return result
381
382 def __or__(self, other: Any) -> IdentitySet:
383 if not isinstance(other, IdentitySet):
384 return NotImplemented
385 return self.union(other)
386
387 @cython.ccall
388 def update(self, iterable: Iterable[Any], /):

Callers

nothing calls this directly

Calls 1

unionMethod · 0.95

Tested by

no test coverage detected