libstdc++
GNU C++ library
Loading...
Searching...
No Matches
◆
_M_assign()
[1/2]
template<typename _CharT, typename _Traits, typename _Alloc>
void
std::basic_string
< _CharT, _Traits, _Alloc >::_M_assign
(
_CharT *
__d
,
size_type
__n
,
_CharT
__c
)
inline
static
private
noexcept
Definition at line
411
of file
cow_string.h
.
412
{
413
if
(
__n
== 1)
414
traits_type::assign
(*
__d
,
__c
);
415
else
416
traits_type::assign
(
__d
,
__n
,
__c
);
417
}
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