Skip to content

EntropyEngine::Core::IO::ReadOptions

Options controlling file reads. More…

#include <IFileSystemBackend.h>

Name
uint64_toffset
std::optional< size_t >length
boolbinary
struct EntropyEngine::Core::IO::ReadOptions;

Options controlling file reads.

Parameters:

  • offset Starting byte offset (default 0)
  • length Optional max bytes to read (reads to EOF if not set)
  • binary Open in binary mode (platform newline translation off)
uint64_t offset = 0;
std::optional< size_t > length;
bool binary = true;

Updated on 2026-01-26 at 17:14:35 -0500