module documentation
Implementation of URL and title pointer lists.
| Class | |
No class docstring; 1/1 method, 0/5 class method documented |
| Class | |
A variant of SimplePointerList that reads pointers always from the disk. |
| Class | |
A on-disk pointer list used by the ZIM title listings. |
| Class | |
An ordered pointer list of a ZIM file. |
| Class | |
A pointer list of a ZIM file. |
| Class | |
A pointer list used by the ZIM title listings. |
| Function | binarysearch |
Adapted version of the binarysearch algorithm. See bisect.bisect_left for general behavior notes. |
Adapted version of the binarysearch algorithm. See bisect.bisect_left for general behavior notes.
| Parameters | |
| to | a sorted, indexable object to search |
| element:any | element to find |
| key:callable expecting one argument | key function to extract comparison key. Not applied to element. |
start:int | start of search range. Used for recursive call. |
end:int | end of search range. Used for recursive call. |
| Returns | |
int | the first index for which all subsequent elements are >= the specified element |