Beispiel #1
0
 private bool ScansContainsHash(int hashCode)
 {
     if (_scans == null)
     {
         return(false);
     }
     return(_scans.ContainsHash(hashCode));
 }
Beispiel #2
0
 private bool CompletionsContainsHash(int hashCode)
 {
     if (_completions == null)
     {
         return(false);
     }
     return(_completions.ContainsHash(hashCode));
 }
Beispiel #3
0
 private bool PredictionsContainsHash(int hashCode)
 {
     if (_predictions == null)
     {
         return(false);
     }
     return(_predictions.ContainsHash(hashCode));
 }