static char_type* copy( char_type* dest,const char_type* src,std::size_t count); | (constexpr since C++20) | |
Copiescount characters from the character string pointed to bysrc to the character string pointed to bydest.
If[dest, dest+ count) and[src, src+ count) overlap, the behavior is undefined.
SeeCharTraits for the general requirements on character traits forX::copy.
Contents |
| dest | - | pointer to a character string to copy to |
| src | - | pointer to a character string to copy from |
| count | - | the number of characters to copy |
dest
Throws nothing.
Linear incount.
[static] | assigns a character (public static member function)[edit] |