GridFormat 0.2.1
I/O-Library for grid-like data structures
Loading...
Searching...
No Matches
Common

Detailed Description

Files

file  field.hpp
 
file  lz4.hpp
 Compressor using the LZ4 library.
 
file  lzma.hpp
 Compressor using the LZMA library.
 
file  zlib.hpp
 Compressor using the ZLIB library.
 

Classes

class  GridFormat::Field
 Abstract interface for fields of values that is used by writers/readers to store fields. More...
 

Typedefs

using GridFormat::FieldPtr = std::shared_ptr< const Field >
 Pointer type used by writers/readers for fields.
 

Functions

template<typename F >
requires ( std::derived_from<std::remove_cvref_t<F>, Field> and !std::is_lvalue_reference_v<F>)
FieldPtr GridFormat::make_field_ptr (F &&f)
 Factory function for field pointers.