Check if item is fully excluded. :param item: key or index of a value
(self, item: Any)
| 496 | self._items: 'MappingIntStrAny' = items |
| 497 | |
| 498 | def is_excluded(self, item: Any) -> bool: |
| 499 | """ |
| 500 | Check if item is fully excluded. |
| 501 | |
| 502 | :param item: key or index of a value |
| 503 | """ |
| 504 | return self.is_true(self._items.get(item)) |
| 505 | |
| 506 | def is_included(self, item: Any) -> bool: |
| 507 | """ |