Short alias to ContainerPath()
| 309 | |
| 310 | // Short alias to ContainerPath() |
| 311 | std::string Path(std::string_view stem) const { |
| 312 | return ConcatAbstractPath(container_name, stem); |
| 313 | } |
| 314 | |
| 315 | std::string ObjectPath() const { return ContainerPath(kObjectName); } |
| 316 | std::string NotFoundObjectPath() const { return ContainerPath("not-found"); } |
no test coverage detected