| 260 | } |
| 261 | |
| 262 | Result<std::shared_ptr<io::OutputStream>> OpenOutputStream(const std::string& path) { |
| 263 | bool append = false; |
| 264 | return OpenOutputStreamGeneric(path, append); |
| 265 | } |
| 266 | |
| 267 | Result<std::shared_ptr<io::OutputStream>> OpenAppendStream(const std::string& path) { |
| 268 | bool append = true; |
nothing calls this directly
no test coverage detected