tatami_chunked
Helpers to create custom chunked tatami matrices
Loading...
Searching...
No Matches
tatami_chunked::SimpleDenseChunkWrapper< Blob_ > Class Template Reference

Create a dense chunk for a CustomDenseChunkedMatrix. More...

#include <mock_dense_chunk.hpp>

Detailed Description

template<class Blob_>
class tatami_chunked::SimpleDenseChunkWrapper< Blob_ >

Create a dense chunk for a CustomDenseChunkedMatrix.

Wraps a dense blob in a simple chunk interface for use inside a CustomDenseChunkedMatrix. Each blob should hold a (possibly compressed) 2-dimensional array of numeric values. The wrapper satisfies the MockSimpleDenseChunk interface, but is even simpler; extraction of any data involves realization of the entire blob, with no optimization for subsets of interest along either dimension.

The Blob_ class should provide the following:

  • typedef value_type, specifying the type of the value in the array.
  • A nrow() const method, defining the number of rows in the array.
  • A ncol() const method, defining the number of columns in the array.
  • bool is_row_major() const, indicating whether the realized array is row-major.
  • A void inflate(std::vector<value_type>& buffer) const method that fills buffer with the contents of the array. This should be filled in row-major format if is_row_major() returns true and in column-major format otherwise.
Template Parameters
Blob_Class to represent a dense blob.

The documentation for this class was generated from the following file: