Name returns the name corresponding to the given fileid.
(fileid uint32)
| 170 | |
| 171 | // Name returns the name corresponding to the given fileid. |
| 172 | func (ix *Index) Name(fileid uint32) string { |
| 173 | return string(ix.NameBytes(fileid)) |
| 174 | } |
| 175 | |
| 176 | // listAt returns the index list entry at the given offset. |
| 177 | func (ix *Index) listAt(off uint32) (trigram, count, offset uint32) { |