MCPcopy Create free account
hub / github.com/Clarionos/clarion / reserve

Method reserve

libraries/fc/src/string.cpp:56–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

54 const char& string::operator[](size_t idx)const { return (*my)[idx]; }
55
56 void string::reserve(size_t r) { my->reserve(r); }
57 size_t string::size()const { return my->size(); }
58 size_t string::find(char c, size_t p)const { return my->find(c,p); }
59 size_t string::find(const fc::string& str, size_t pos /* = 0 */) const { return my->find(str, pos); }

Callers 15

from_base58Function · 0.45
capn_compressFunction · 0.45
capn_uncompressFunction · 0.45
from_json_hexFunction · 0.45
dispatchFunction · 0.45
from_json_queryFunction · 0.45
sendMethod · 0.45
clean_appendFunction · 0.45
format_stringFunction · 0.45
operator +Function · 0.45
operator -Function · 0.45
operator *Function · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected