libstdc++
GNU C++ library
Loading...
Searching...
No Matches
◆
append()
[4/14]
template<typename _CharT, typename _Traits, typename _Alloc>
basic_string
&
std::basic_string
< _CharT, _Traits, _Alloc >::append
(
const _CharT *
__s
)
inline
Append a C string.
Parameters
__s
The C string to append.
Returns
Reference to this string.
Definition at line
1342
of file
cow_string.h
.
1343
{
1344
__glibcxx_requires_string
(
__s
);
1345
return
this->
append
(
__s
,
traits_type::length
(
__s
));
1346
}
__glibcxx_requires_string
#define __glibcxx_requires_string(_String)
Definition
debug.h:81
std::basic_string::append
constexpr basic_string & append(const basic_string &__str)
Append a string to this string.
Definition
basic_string.h:1559
std::basic_string
Managing sequences of characters and character-like objects.
Definition
basic_string.h:94
std
basic_string
Generated on
for libstdc++ by
1.16.1