Return the number of occurrences of the specified symbol. */
| 62 | |
| 63 | /** Return the number of occurrences of the specified symbol. */ |
| 64 | size_t count(T c) const { return m_data[c].one_num(); } |
| 65 | |
| 66 | /** Return the count of symbol c in s[0, i). */ |
| 67 | size_t rank(T c, size_t i) const { return m_data[c].Rank(1, i); } |
no test coverage detected