class documentation
class OurRange:
A class that mimics the built-in range class.
| Method | __getitem__ |
Return entry at index k (using standard interpretation if negative). |
| Method | __init__ |
Initialize an OurRange instance. |
| Method | __len__ |
Return number of entries in the range. |
| Instance Variable | _length |
Undocumented |
| Instance Variable | _start |
Undocumented |
| Instance Variable | _step |
Undocumented |