MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / issuperset

Method issuperset

lib/sqlalchemy/util/_collections_cy.py:356–363  ·  view source on GitHub ↗
(self, iterable: Iterable[Any], /)

Source from the content-addressed store, hash-verified

354
355 @cython.ccall
356 def issuperset(self, iterable: Iterable[Any], /) -> cython.bint:
357 other: IdentitySet
358 if isinstance(iterable, IdentitySet):
359 other = iterable
360 else:
361 other = self.__class__(iterable)
362
363 return self._members.keys() >= other._members.keys()
364
365 def __ge__(self, other: Any) -> bool:
366 if not isinstance(other, IdentitySet):

Callers 11

__ge__Method · 0.95
__gt__Method · 0.95
do_initMethod · 0.45
_load_scalar_attributesFunction · 0.45
_configure_pksMethod · 0.45
_register_persistentMethod · 0.45
_mergeMethod · 0.45
_generate_actionsMethod · 0.45
_load_for_stateMethod · 0.45

Calls 1

keysMethod · 0.45

Tested by

no test coverage detected