================
@@ -104,6 +108,9 @@ struct basic_string_view {
   size_type rfind(const C* s, size_type pos, size_type count) const;
   size_type rfind(const C* s, size_type pos = npos) const;
 
+  bool contains(const C *s) const;
+  bool contains(C s) const;
----------------
nicovank wrote:

```suggestion
  bool contains(const C *s) const;
  bool contains(C s) const;
  bool contains(basic_string_view sv) const;
```

https://github.com/llvm/llvm-project/pull/110351
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to