std::char_traits::copy

std::char_traits::copy

static char_type* copy( 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.

The behavior is undefined if 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.

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/string/char_traits/copy

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部