static char_type*
copy( char_type* dest, const char_type* src, std::size_t count );
| (constexpr since C++20) |
Copies count characters from the character string pointed to by src to the character string pointed to by dest.
If [dest, dest + count) and [src, src + count) overlap, the behavior is undefined.
See CharTraits for the general requirements on character traits for X::copy.
| 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 in count.
|
[static] | assigns a character (public static member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/string/char_traits/copy