My Project
square8.cc
Go to the documentation of this file.
1/* position8.cc
2 */
4#include <iostream>
5
6#ifndef MINIMAL
7std::ostream& osl::container::operator<<(std::ostream& os, const Square8& v)
8{
9 os << "Square8(";
10 for (size_t i=0; i<v.size(); ++i)
11 os << " " << v[i].x() << v[i].y();
12 return os << ")";
13}
14#endif
15/* ------------------------------------------------------------------------- */
16// ;;; Local Variables:
17// ;;; mode:c++
18// ;;; c-basic-offset:2
19// ;;; End:
size_t size() const
Definition container.h:243
std::ostream & operator<<(std::ostream &, const BitXmask)
Definition bitXmask.cc:6