LatNet Builder Manual  2.0.1-11
Software Package for Constructing Highly Uniform Point Sets
Text Output

LatBuilder 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