MCPcopy Create free account
hub / github.com/ElementsProject/elements / NewSequentialFile

Function NewSequentialFile

src/leveldb/include/leveldb/env.h:325–327  ·  view source on GitHub ↗

The following text is boilerplate that forwards all methods to target().

Source from the content-addressed store, hash-verified

323
324 // The following text is boilerplate that forwards all methods to target().
325 Status NewSequentialFile(const std::string& f, SequentialFile** r) override {
326 return target_->NewSequentialFile(f, r);
327 }
328 Status NewRandomAccessFile(const std::string& f,
329 RandomAccessFile** r) override {
330 return target_->NewRandomAccessFile(f, r);

Callers

nothing calls this directly

Calls 1

NewSequentialFileMethod · 0.45

Tested by

no test coverage detected