Classes | |
| class | ROOT::Internal::RKeyBlob |
| The RKeyBlob writes an invisible key into a TFile. More... | |
| class | RNTupleCompressor |
| Helper class to compress data blocks in the ROOT compression frame format. More... | |
| class | RNTupleDecompressor |
| Helper class to uncompress data blocks in the ROOT compression frame format. More... | |
| class | RNTupleSerializer |
| A helper class for serializing and deserialization of the RNTuple binary format. More... | |
| struct | ROOT::Internal::RTFileControlBlock |
| If a TFile container is written by a C stream (simple file), on dataset commit, the file header and the TFile record need to be updated. More... | |
Namespaces | |
| namespace | ROOT |
| namespace | ROOT::Internal |
Macros | |
| #define | R__LITTLE_ENDIAN 0 |
Functions | |
| static size_t | ComputeNumChunks (size_t nbytes, size_t maxChunkSize) |
| template<typename T> | |
| std::unique_ptr< T[]> | MakeUninitArray (std::size_t size) |
| Make an array of default-initialized elements. | |
Definition in file RMiniFile.cxx.
| #define R__LITTLE_ENDIAN 0 |
Definition at line 54 of file RMiniFile.cxx.
|
static |
Definition at line 648 of file RMiniFile.cxx.
| std::unique_ptr< T[]> ROOT::Internal::MakeUninitArray | ( | std::size_t | size | ) |
Make an array of default-initialized elements.
This is useful for buffers that do not need to be initialized.
With C++20, this function can be replaced by std::make_unique_for_overwrite<T[]>.
Definition at line 42 of file RNTupleUtils.hxx.