MCPcopy Create free account
hub / github.com/deathkiller/jazz2-native / end

Method end

Sources/Shared/Containers/String.cpp:400–404  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

398 }
399
400 char* String::end() {
401 if (_small.size & Implementation::SmallStringBit)
402 return _small.data + (_small.size & ~SmallSizeMask);
403 return _large.data + (_large.size & ~LargeSizeMask);
404 }
405
406 const char* String::end() const {
407 if (_small.size & Implementation::SmallStringBit)

Callers 15

appendToMethod · 0.45
isReferenceToStorageMethod · 0.45
isRangeInStorageMethod · 0.45
growAndAssignMethod · 0.45
push_backMethod · 0.45
pop_backMethod · 0.45
moveElementsForGrowMethod · 0.45
push_backMethod · 0.45
assignRemoteMethod · 0.45
clearMethod · 0.45
resizeImplMethod · 0.45
truncateMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected