Effects : Determines the lowest position xpos, if possible, such that both of the following conditions obtain: 19 pos <= xpos and xpos + str.size() <= size(); 2) traits::eq(at(xpos+I), str.at(I)) for all elements I of the string controlled by str. Throws : Nothing Returns : xpos if the function can determine such a value for xpos. Otherwise, returns npos.
| 1938 | //! |
| 1939 | //! <b>Returns</b>: xpos if the function can determine such a value for xpos. Otherwise, returns npos. |
| 1940 | size_type find(const basic_string& s, size_type pos = 0) const |
| 1941 | { return find(s.c_str(), pos, s.size()); } |
| 1942 | |
| 1943 | //! <b>Requires</b>: s points to an array of at least n elements of CharT. |
| 1944 | //! |
no test coverage detected