MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / issubset

Method issubset

lib/sqlalchemy/ext/associationproxy.py:2028–2029  ·  view source on GitHub ↗
(self, __s: Iterable[Any])

Source from the content-addressed store, hash-verified

2026 return self
2027
2028 def issubset(self, __s: Iterable[Any]) -> bool:
2029 return set(self).issubset(__s)
2030
2031 def issuperset(self, __s: Iterable[Any]) -> bool:
2032 return set(self).issuperset(__s)

Callers 2

_reflect_indexesMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected