A DirReader reads the entries of a "directory" schema blob's referenced "static-set" blob.
| 30 | // A DirReader reads the entries of a "directory" schema blob's |
| 31 | // referenced "static-set" blob. |
| 32 | type DirReader struct { |
| 33 | fetcher blob.Fetcher |
| 34 | ss *superset |
| 35 | |
| 36 | staticSet []blob.Ref |
| 37 | current int |
| 38 | } |
| 39 | |
| 40 | // NewDirReader creates a new directory reader and prepares to |
| 41 | // fetch the static-set entries |
nothing calls this directly
no outgoing calls
no test coverage detected