private bool ScansContainsHash(int hashCode) { if (_scans == null) { return(false); } return(_scans.ContainsHash(hashCode)); }
private bool CompletionsContainsHash(int hashCode) { if (_completions == null) { return(false); } return(_completions.ContainsHash(hashCode)); }
private bool PredictionsContainsHash(int hashCode) { if (_predictions == null) { return(false); } return(_predictions.ContainsHash(hashCode)); }