MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / StringPaths

Method StringPaths

src/Core/System/MountablePath.cpp:99–108  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

97 }
98
99 std::vector<std::string> MountablePath::StringPaths()
100 {
101 std::vector<std::string> mountedPaths;
102 mountedPaths.reserve(MountedPaths.size());
103 for (auto& mountedPath : MountedPaths)
104 {
105 mountedPaths.push_back(mountedPath.basePath);
106 }
107 return mountedPaths;
108 }
109
110 void MountablePath::Sort()
111 {

Callers

nothing calls this directly

Calls 3

reserveMethod · 0.45
sizeMethod · 0.45
push_backMethod · 0.45

Tested by

no test coverage detected