lsst.astshim g1011452fe8+d885b47780
Loading...
Searching...
No Matches
keyMapContinued.py
Go to the documentation of this file.
1__all__ = ["KeyMap"]
2
3from .._astshimLib import KeyMap
4
5
6def keys(self):
7 for i in range(len(self)):
8 yield self.key(i)
9
10
11KeyMap.keys = keys