CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
strbitset.cc
Go to the documentation of this file.
2 
3 namespace pat {
4 
5 
7 
8 
10  strbitset ret = r;
11  ret &= l;
12  return ret;
13  }
14 
16  strbitset ret = r;
17  ret |= l;
18  return ret;
19  }
20 
22  strbitset ret = r;
23  ret ^= l;
24  return ret;
25  }
26 
27  std::ostream & operator<<(std::ostream & out, const strbitset::index_type & r) {
28  out << r.i_;
29  return out;
30  }
31 
32 }
strbitset operator|(const strbitset &l, const strbitset &r)
Definition: strbitset.cc:15
strbitset operator^(const strbitset &l, const strbitset &r)
Definition: strbitset.cc:21
std::ostream & operator<<(std::ostream &out, const strbitset::index_type &r)
Definition: strbitset.cc:27
strbitset operator&(const strbitset &l, const strbitset &r)
Definition: strbitset.cc:9
tuple out
Definition: dbtoconf.py:99
static const std::string dummy_
Definition: strbitset.h:389