18MutableString::MutableString()
62 data.insert(idx, 1, c);
120 auto negative =
false;
125 while (
true ==
true) {
126 auto remainder = i % 10;
128 insert(idx,
static_cast< char >((
'0' + remainder)));
133 if (negative ==
true) {
155 auto integer =
static_cast<int>(f);
156 for (
auto i = 0; i < decimals; i++) {
157 auto integerDecimal =
static_cast<int>(((f - integer) * Math::pow(10.0f,
static_cast<float>(i) + 1.0f))) - (10 *
static_cast<int>(((f - integer) * Math::pow(10.0f,
static_cast<float>(i)))));
158 insert(idx + i, Math::abs(integerDecimal));
161 insert(idx, Math::abs(integer));
162 if (f < 0.0)
insert(idx,
'-');
168 data.erase(idx, count);
MutableString & append(char c)
Append character.
MutableString & reset()
Reset.
MutableString & insert(int32_t idx, char c)
Insert character c at idx.
bool equals(const string &s2) const
Equals.
MutableString & remove(int32_t idx, int32_t count)
Remove characters at idx with given length.
char charAt(int32_t idx) const
Get char at index.
MutableString()
Public default constructor.
MutableString & set(char c)
Set character.
MutableString clone()
Clone.
int32_t indexOf(const MutableString &s, int32_t idx) const
Returns the character index where string s have been found or -1 if not found.
void replace(const string &what, const string &by, int beginIndex=0)
Replace string with another string.