Main Page   Packages   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Search  

C:/temp/src/j2k/Beta/Math/nb/MCBool.hpp

Go to the documentation of this file.
00001 inline Integer operator<<(const Integer &l,const Integer &r) {
00002     return Integer(l.value<<r.value);
00003 }
00004 
00005 inline Integer operator>>(const Integer &l,const Integer &r) {
00006     return Integer(l.value>>r.value);
00007 }
00008 
00009 inline Integer operator|(const Integer &l,const Integer &r) {
00010     return Integer(l.value|r.value);
00011 }
00012 
00013 inline Integer operator&(const Integer &l,const Integer &r) {
00014     return Integer(l.value&r.value);
00015 }
00016 
00017 inline Integer operator^(const Integer &l,const Integer &r) {
00018     return Integer(l.value^r.value);
00019 }

Generated on Sun Oct 14 18:46:13 2001 for Standard J2K Library by doxygen1.2.11.1 written by Dimitri van Heesch, © 1997-2001