MCPcopy Create free account
hub / github.com/acl-dev/acl / pop_back

Method pop_back

lib_acl_cpp/src/stdlib/string.cpp:665–673  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

663}
664
665bool string::pop_back()
666{
667 size_t n = size();
668 if (n == 0) {
669 return false;
670 }
671 truncate(n - 1);
672 return true;
673}
674
675string& string::terminate()
676{

Callers 11

iocp_waitFunction · 0.45
read_complete_callbackFunction · 0.45
write_complete_callbackFunction · 0.45
aio_delay_checkFunction · 0.45
acl_aio_clean_read_hooksFunction · 0.45
get_next_rowMethod · 0.45
check_namespace_endMethod · 0.45
get_initializelistMethod · 0.45
http_hdr_res_newFunction · 0.45
http_hdr_req_newFunction · 0.45

Calls 1

sizeFunction · 0.50

Tested by

no test coverage detected