size_type find(const basic_string& str,
size_type pos = 0) const noexcept;
Returns: xpos if the function can determine such a value for xpos. Otherwise, returns npos.
Remarks: Uses traits::eq().
size_type find(const charT* s, size_type pos, size_type n) const;
Returns: find(basic_string<charT,traits,Allocator>(s,n),pos).
size_type find(const charT* s, size_type pos = 0) const noexcept;
Requires: s points to an array of at least traits::length(s) + 1 elements of charT.
Returns: find(basic_string(s), pos).
size_type find(charT c, size_type pos = 0) const noexcept;
Returns: find(basic_string<charT,traits,Allocator>(1,c), pos).