20 #include <tensor/indices.h>
35 operator<<(
const Indices &a,
const Indices &b)
37 Indices output(a.size() + b.size());
38 Indices::iterator j = output.begin();
39 for (Indices::const_iterator i = a.begin(); i != a.end(); i++, j++)
41 for (Indices::const_iterator i = b.begin(); i != b.end(); i++, j++)