Get the items from the map
(self)
| 62 | return _api_internal._MapCount(self, k) != 0 |
| 63 | |
| 64 | def items(self): |
| 65 | """Get the items from the map""" |
| 66 | akvs = _api_internal._MapItems(self) |
| 67 | return [(akvs[i], akvs[i + 1]) for i in range(0, len(akvs), 2)] |
| 68 | |
| 69 | def __len__(self): |
| 70 | return _api_internal._MapSize(self) |
no outgoing calls