94 memcpy((
char*)data(), other.data(), other.size());
101 resize(other.size());
102 memcpy((
char*)data(), other.data(), other.size());
109 std::string tmp(*
this);
110 resize(tmp.size() + other.size());
111 memcpy((
char*)data(), tmp.data(), tmp.size());
112 memcpy((
char*)data() + tmp.size(), other.data(), other.size());
119 std::string tmp(*
this);
120 resize(tmp.size() + other.size());
121 memcpy((
char*)data(), tmp.data(), tmp.size());
122 memcpy((
char*)data() + tmp.size(), other.data(), other.size());