Skip to content
Snippets Groups Projects
Commit 92201f6d authored by René Fritze's avatar René Fritze
Browse files

[common.misc] adds mthod to create value filled std::array

parent 2747376f
No related branches found
No related tags found
No related merge requests found
...@@ -102,11 +102,20 @@ size_t arrayLength(T(&/*array*/)[N]) ...@@ -102,11 +102,20 @@ size_t arrayLength(T(&/*array*/)[N])
return N; return N;
} }
//! get a non-zero initialised array
template <class T, size_t N>
std::array<T, N> make_array(const T& v)
{
std::array<T, N> ret;
ret.fill(v);
return ret;
}
//! writes process environment to file //! writes process environment to file
void dump_environment(boost::filesystem::ofstream& file, std::string csv_sep = ","); void dump_environment(boost::filesystem::ofstream& file, std::string csv_sep = ",");
} // namespace Common } // namespace Common
} // namepspace Stuff } // namespace Stuff
} // namespace Dune } // namespace Dune
#endif // DUNE_STUFF_COMMON_MISC_HH #endif // DUNE_STUFF_COMMON_MISC_HH
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment