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

◆ outputLabel()

void outputLabel ( std::ostream & o,
const Label & vec )

Definition at line 6 of file SuffixTree.cpp.

7{
8 o << "[";
9 for (auto i = vec.begin(); i != vec.end(); ++i)
10 {
11 if (i != vec.begin())
12 o << ",";
13 o << *i;
14 }
15 o << "]";
16}

Referenced by SuffixTreeNode::dump().