| 52 | /// Convert a container to a std::stringstream |
| 53 | template <typename T> |
| 54 | std::stringstream container_to_string(const T& x, int precision) |
| 55 | { |
| 56 | std::stringstream s; |
| 57 | s.precision(precision); |
| 58 | std::ranges::for_each(x, [&s](auto e) { s << e << " "; }); |
| 59 | return s; |
| 60 | } |
| 61 | //---------------------------------------------------------------------------- |
| 62 | |
| 63 | void add_pvtu_mesh(pugi::xml_node& node) |
no outgoing calls
no test coverage detected