MCPcopy Create free account
hub / github.com/ashkulz/NppFTP / CompactTypeVector

Method CompactTypeVector

src/FTPProfile.cpp:869–881  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

867}
868
869tstring FTPProfile::CompactTypeVector(vString vect) const {
870 tstring typeString;
871
872 if (vect.size() > 0) {
873 typeString = vect[0];
874 for(size_t i = 1; i < vect.size(); i++) {
875 typeString += TEXT("|");
876 typeString += vect[i];
877 }
878 }
879
880 return typeString;
881}
882
883int FTPProfile::SortVector(vProfile & pVect) {
884 std::sort(pVect.begin(), pVect.end(), &FTPProfile::CompareProfile);

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.80

Tested by

no test coverage detected