int
main()
{
using CoordType = double;
p0[0] = 1.0;
p0[1] = 2.0;
p1[0] = 2.0;
p1[1] = 3.0;
points->Reserve(2);
VectorContainerType::Iterator
point = points->Begin();
while (
point != points->End())
{
std::cout <<
point->Value() << std::endl;
}
return EXIT_SUCCESS;
}