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

◆ operator<<() [2/2]

std::ostream & operator<< ( std::ostream & o,
const WordWithDataTable & wordWithDataTable )

Definition at line 201 of file WordTable.cpp.

265{
266 if (wordTable.mMonomials.size() == 0) return o;
267
268 int j = 0;
269 for (; j < wordTable.mMonomials.size() - 1; ++j)
270 {
271 o << wordTable.mMonomials[j] << ",";
272 }
273 o << wordTable.mMonomials[j];
274 return o;
275}

References word.