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

C:/temp/src/j2k/Beta/Math/Number/NbBool.hpp File Reference

Go to the source code of this file.

Functions

NUMBER operator<< (const NUMBER &l, const NUMBER &r)
NUMBER operator>> (const NUMBER &l, const NUMBER &r)
NUMBER operator| (const NUMBER &l, const NUMBER &r)
NUMBER operator & (const NUMBER &l, const NUMBER &r)
NUMBER operator^ (const NUMBER &l, const NUMBER &r)


Function Documentation

NUMBER operator & const NUMBER &    l,
const NUMBER &    r
[inline]
 

Definition at line 69 of file NbBool.hpp.

00069                                                             {
00070     return NUMBER(l.value & r.value);
00071 }

NUMBER operator<< const NUMBER &    l,
const NUMBER &    r
[inline]
 

Definition at line 57 of file NbBool.hpp.

00057                                                             {
00058     return NUMBER( l.value << r.value);
00059 }

NUMBER operator>> const NUMBER &    l,
const NUMBER &    r
[inline]
 

Definition at line 61 of file NbBool.hpp.

00061                                                             {
00062     return NUMBER(l.value >> r.value);
00063 }

NUMBER operator^ const NUMBER &    l,
const NUMBER &    r
[inline]
 

Definition at line 73 of file NbBool.hpp.

00073                                                             {
00074     return NUMBER(l.value ^ r.value);
00075 }

NUMBER operator| const NUMBER &    l,
const NUMBER &    r
[inline]
 

Definition at line 65 of file NbBool.hpp.

00065                                                             {
00066     return NUMBER(l.value | r.value);
00067 }


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