:param e: key or index of element on value :return: raw values for element if self._items is dict and contain needed element
(self, e: 'IntStr')
| 512 | return item in self._items |
| 513 | |
| 514 | def for_element(self, e: 'IntStr') -> Optional[Union['AbstractSetIntStr', 'MappingIntStrAny']]: |
| 515 | """ |
| 516 | :param e: key or index of element on value |
| 517 | :return: raw values for element if self._items is dict and contain needed element |
| 518 | """ |
| 519 | |
| 520 | item = self._items.get(e) |
| 521 | return item if not self.is_true(item) else None |
| 522 | |
| 523 | def _normalize_indexes(self, items: 'MappingIntStrAny', v_length: int) -> 'DictIntStrAny': |
| 524 | """ |