()
| 20 | } |
| 21 | |
| 22 | func (c *contentRangeFlags) contentIDRange() content.IDRange { |
| 23 | if c.contentIDPrefixed { |
| 24 | return index.AllPrefixedIDs |
| 25 | } |
| 26 | |
| 27 | if c.contentIDNonPrefixed { |
| 28 | return index.AllNonPrefixedIDs |
| 29 | } |
| 30 | |
| 31 | return index.PrefixRange(content.IDPrefix(c.contentIDPrefix)) |
| 32 | } |
no test coverage detected