|
template<typename T > |
std::enable_if< can_history_io< T >, HistoryMetadata >::type | geos::getHistoryMetadata (string const &name, ArrayView< T const, 1, 0 > const &arr, localIndex const numComps, localIndex sizeOverride=-1) |
| Produce a HistoryMetadata object for a supported one-dimensional array type. More...
|
|
template<typename T > |
std::enable_if< can_history_io< T >, HistoryMetadata >::type | geos::getHistoryMetadata (string const &name, SortedArrayView< T const > const &arr, localIndex const numComps, localIndex sizeOverride=-1) |
| Produce a HistoryMetadata object for a supported one-dimensional array type. More...
|
|
template<typename ARRAY_T > |
std::enable_if<(traits::is_array_type< ARRAY_T >) &&(ARRAY_T::NDIM > 1) &&can_history_io< typename ARRAY_T::value_type >, HistoryMetadata >::type | geos::getHistoryMetadata (string const &name, ARRAY_T const &arr, localIndex const numComps, localIndex sizeOverride=-1) |
| Produce a HistoryMetadata object for multi-dimensional LvArray::Array/ArrayView types. More...
|
|
template<typename T > |
std::enable_if< can_history_io< T >, HistoryMetadata >::type | geos::getHistoryMetadata (string const &name, const T &type, localIndex const numComps, localIndex sizeOverride=-1) |
| Produce a HistoryMetadata object for a fundamental type that can_history_io. More...
|
|
template<typename T > |
std::enable_if< can_history_io_container< T > &&!can_history_io< typename T::value_type >, HistoryMetadata >::type | geos::getHistoryMetadata (string const &name, const T &type, localIndex const numComps, localIndex sizeOverride) |
| Fall-through implementation to catch attempts to collect history that cannot be collected/output. More...
|
|
template<typename T > |
std::enable_if< !can_history_io_container< T > &&!can_history_io< T >, HistoryMetadata >::type | geos::getHistoryMetadata (string const &name, const T &type, localIndex const numComps, localIndex sizeOverride) |
| Fall-through implementation to catch attempts to collect history that cannot be collected/output. More...
|
|