| 26 | bool canBeBoostedByFullMatch = false; |
| 27 | |
| 28 | void InreaseTermsCounter(uint16_t termIdx) { |
| 29 | if (lastTermCounted < termIdx) { |
| 30 | ++termsCounter; |
| 31 | lastTermCounted = termIdx; |
| 32 | } |
| 33 | } |
| 34 | }; |
| 35 | |
| 36 | template <typename IdCont, typename MergeDataType, typename MergeOffsetT> |
no outgoing calls
no test coverage detected