Lattice Builder Manual
Software Package for Constructing Rank-1 Lattices
Text Output

Lattice Builder provides overloads of the stream operator << that recognize iterable data types.

For example, the following code from tutorial/TextStream.cc :

using TextStream::operator<<;
std::cout << std::vector<int>{1, 2, 3, 4, 5} << std::endl;

outputs:

[1, 2, 3, 4, 5]
See also
TextStream