libstdc++
GNU C++ library
Loading...
Searching...
No Matches

◆ _S_copy_chars() [3/6]

template<typename _CharT, typename _Traits, typename _Alloc>
template<class _Iterator>
void std::basic_string< _CharT, _Traits, _Alloc >::_S_copy_chars ( _CharT * __p,
_Iterator __k1,
_Iterator __k2 )
inlinestaticprivate

Definition at line 423 of file cow_string.h.

424 {
425 for (; __k1 != __k2; ++__k1, (void)++__p)
426 traits_type::assign(*__p, static_cast<_CharT>(*__k1));
427 }
Managing sequences of characters and character-like objects.