Macaulay2 Engine
Loading...
Searching...
No Matches

◆ dvector()

template<typename T>
void dvector ( gc_vector< T > & a)

Definition at line 33 of file debug.cpp.

34{
35 buffer o;
36 o << '[';
37 for (auto x : a) o << x << ' ';
38 o << ']';
39 emit(o.str());
40}
char * str()
Definition buffer.hpp:72
volatile int x
void emit(const char *s)
Definition text-io.cpp:41

References emit(), buffer::str(), and x.