| 621 | } |
| 622 | |
| 623 | String String::slice(SliceIndex a, SliceIndex b, int i) const { |
| 624 | auto wide = wideString(); |
| 625 | wide = Star::slice(wide, a, b, i); |
| 626 | return String(wide.c_str()); |
| 627 | } |
| 628 | |
| 629 | void String::append(String const& string) { |
| 630 | m_string.append(string.m_string); |