MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __len__

Method __len__

lib/sqlalchemy/sql/base.py:452–453  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

450 self._defaults: Dict[str, Any] = {}
451
452 def __len__(self) -> int:
453 return len(set(self._non_defaults).union(self._defaults))
454
455 def __iter__(self) -> Iterator[str]:
456 return iter(set(self._non_defaults).union(self._defaults))

Callers

nothing calls this directly

Calls 1

unionMethod · 0.45

Tested by

no test coverage detected