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

◆ operator<<()

template<typename T>
std::ostream & operator<< ( std::ostream & o,
const std::vector< T > & ts )
inline

Definition at line 105 of file util.hpp.

106{
107 o << "[";
108 for (auto a : ts)
109 o << a << " ";
110 o << "]";
111 return o;
112}