find_first_of -- basic_stringをconstexprに対応 #688

1 · cpprefjp · Oct. 6, 2022, 10:33 a.m.
diff --git a/reference/string/basic_string/find_first_of.md b/reference/string/basic_string/find_first_of.md index 4fb35f1c4..2e1bed619 100644 --- a/reference/string/basic_string/find_first_of.md +++ b/reference/string/basic_string/find_first_of.md @@ -5,17 +5,46 @@ * function[meta id-type] ```cpp -size_type find_first_of(const basic_string& str, size_type pos = 0) const; // (1) C++03 -size_type find_first_of(const basic_string& str, size_type pos = 0) const noexcept; // (1) C++11 -...