Creates a path by concatenating the container name and the stem.
| 306 | |
| 307 | // Creates a path by concatenating the container name and the stem. |
| 308 | std::string ContainerPath(std::string_view stem) const { return Path(stem); } |
| 309 | |
| 310 | // Short alias to ContainerPath() |
| 311 | std::string Path(std::string_view stem) const { |
no test coverage detected