Check if value is contained in self._items :param item: key or index of value
(self, item: Any)
| 504 | return self.is_true(self._items.get(item)) |
| 505 | |
| 506 | def is_included(self, item: Any) -> bool: |
| 507 | """ |
| 508 | Check if value is contained in self._items |
| 509 | |
| 510 | :param item: key or index of value |
| 511 | """ |
| 512 | return item in self._items |
| 513 | |
| 514 | def for_element(self, e: 'IntStr') -> Optional[Union['AbstractSetIntStr', 'MappingIntStrAny']]: |
| 515 | """ |
no outgoing calls