std::char_traits::move

1
static char_type* move( char_type* dest, const char_type* src, std::size_t count );

Copies count character from character string pointed to by src to character string pointed to by dest.

Performs correctly even if the copied character ranges overlap, i.e. src is in [dest, dest + count).

Parameters

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

Return value

dest.

Exceptions

(none).

Complexity

Linear.

doc_CPP
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.