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) |
|
Definition at line 69 of file NbBool.hpp. 00069 { 00070 return NUMBER(l.value & r.value); 00071 } |
|
Definition at line 57 of file NbBool.hpp. 00057 { 00058 return NUMBER( l.value << r.value); 00059 } |
|
Definition at line 61 of file NbBool.hpp. 00061 { 00062 return NUMBER(l.value >> r.value); 00063 } |
|
Definition at line 73 of file NbBool.hpp. 00073 { 00074 return NUMBER(l.value ^ r.value); 00075 } |
|
Definition at line 65 of file NbBool.hpp. 00065 { 00066 return NUMBER(l.value | r.value); 00067 } |