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

Method at

source/core/StarString.cpp:188–192  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

186}
187
188String::Char String::at(size_t i) const {
189 if (i > size())
190 throw OutOfRangeException(strf("Out of range in String::at({})", i));
191 return operator[](i);
192}
193
194String String::toUpper() const {
195 String s;

Callers 3

findNextBoundaryMethod · 0.95
extractMethod · 0.45
rextractMethod · 0.45

Calls 2

sizeFunction · 0.85
strfFunction · 0.85

Tested by

no test coverage detected