12 inline const byte* MemoryMappedFileReader::begin ()
const
14 return fSpan_.data ();
16 inline const byte* MemoryMappedFileReader::end ()
const
18 return fSpan_.data () + fSpan_.size ();
20 inline size_t MemoryMappedFileReader::size ()
const
22 return fSpan_.size ();
24 inline span<const byte> MemoryMappedFileReader::AsSpan ()
const
28 inline span<const byte> MemoryMappedFileReader::operator() ()
const