MCPcopy Create free account
hub / github.com/OpenStarbound/OpenStarbound / wideString

Method wideString

source/core/StarString.cpp:134–140  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

132}
133
134String::WideString String::wideString() const {
135 WideString string;
136 string.reserve(m_string.size());
137 for (Char c : *this)
138 string.push_back(c);
139 return string;
140}
141
142String::const_iterator String::begin() const {
143 return const_iterator(m_string.begin());

Callers 2

toJsonStreamMethod · 0.80
toJsonStreamMethod · 0.80

Calls 3

reserveMethod · 0.45
sizeMethod · 0.45
push_backMethod · 0.45

Tested by

no test coverage detected