My Project
bitXmask.cc
Go to the documentation of this file.
1/* bitXmask.cc
2 */
3#include "osl/bits/bitXmask.h"
4#include <iostream>
5
6std::ostream& osl::container::operator<<(std::ostream& os,const BitXmask mask){
7 for(int i=1;i<=9;i++)
8 os << ((mask.intValue()>>i)&1);
9 return os;
10}
11
12/* ------------------------------------------------------------------------- */
13// ;;; Local Variables:
14// ;;; mode:c++
15// ;;; c-basic-offset:2
16// ;;; End:
X座標のbitset.
Definition bitXmask.h:17
std::ostream & operator<<(std::ostream &, const BitXmask)
Definition bitXmask.cc:6