IsCountOrCountRev returns whether the key is a count or a count rev key.
()
| 326 | |
| 327 | // IsCountOrCountRev returns whether the key is a count or a count rev key. |
| 328 | func (p ParsedKey) IsCountOrCountRev() bool { |
| 329 | return p.IsCount() || p.IsCountRev() |
| 330 | } |
| 331 | |
| 332 | // IsCount returns whether the key is a count key. |
| 333 | func (p ParsedKey) IsCount() bool { |