AFF --- A container for numbers (array) by Friederich and Forbriger.

◆ dump() [5/5]

template<class T >
void aff::dump ( const ConstArray< T > &  array,
std::ostream &  os = std::cout 
)

Dump array shape.

Definition at line 175 of file dump_array.h.

References dump(), dump_layout(), aff::ConstArray< T >::representation(), and aff::ConstArray< T >::shape().

176 {
177  os << "dump of a Array object layout:" << endl;
178  os << "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^" << endl;
179  dump(array.shape());
180  dump_layout(array.representation());
181 }
void dump_layout(const aff::ConstSharedHeap< T > &sharedheap, std::ostream &os=std::cout)
Dump heap layout.
void dump(const ConstArray< T > &array, std::ostream &os=std::cout)
Dump array shape.
Definition: dump_array.h:175
Here is the call graph for this function: