Alexandria 2.31.0
SDC-CH common library for the Euclid project
Loading...
Searching...
No Matches
TestHelper.h
Go to the documentation of this file.
1
19#ifndef _TABLE_TESTHELPER_H
20#define _TABLE_TESTHELPER_H
21
22#include "Table/Row.h"
23#include <ostream>
24
25namespace boost {
26
30inline std::ostream& operator<<(std::ostream& out, const Euclid::Table::Row::cell_type& cell) {
31 return out << Euclid::Table::cell_stream_adaptor(cell);
32}
33
34} // namespace boost
35
36#endif // _TABLE_TESTHELPER_H
boost::variant< bool, int32_t, int64_t, float, double, std::string, std::vector< bool >, std::vector< int32_t >, std::vector< int64_t >, std::vector< float >, std::vector< double >, NdArray::NdArray< int32_t >, NdArray::NdArray< int64_t >, NdArray::NdArray< float >, NdArray::NdArray< double > > cell_type
The possible cell types.
Definition Row.h:64
Definition array.h:33