|
| template<typename T > |
| std::string | array_str (const char *name, GlobalAddress< T > base, size_t nelem, int width=10) |
| | String representation of a global array. More...
|
| |
| template<int width = 10, typename ArrayT = nullptr_t> |
| std::string | array_str (const char *name, const ArrayT &array) |
| |
| template<int width = 10, typename ArrayT = nullptr_t> |
| std::string | array_str (const ArrayT &array) |
| |
| template<typename T > |
| SimpleIterator< T > | iterate (T *base=nullptr, size_t nelem=0) |
| | Easier C++11 iteration over local array. More...
|
| |
| template<int width = 10, typename T = nullptr_t> |
| std::string | array_str (const char *name, T *base, size_t nelem) |
| | String representation of a local array, matches form of Grappa::array_str that takes a global array. More...
|
| |