Esempio n. 1
0
 void MatchCountingExplainStrategy::noteIterate( bool match, bool orderedMatch,
                                                bool loadedRecord, bool chunkSkip ) {
     _noteIterate( match, orderedMatch, loadedRecord, chunkSkip );
     if ( orderedMatch ) {
         ++_orderedMatches;
     }
 }
Esempio n. 2
0
 void MatchCountingExplainStrategy::noteIterate( const ResultDetails& resultDetails ) {
     _noteIterate( resultDetails );
     if ( resultDetails.orderedMatch ) {
         ++_orderedMatches;
     }
 }