#include <j2k/Fred/Number/MathStat.hpp>
#include <j2k/Fred/Number/MCNumber.hpp>
#include <stdlib.h>
Go to the source code of this file.
Compounds | |
class | Float |
Functions | |
Float | operator<< (const Float &l, const Float &r) |
Float | operator>> (const Float &l, const Float &r) |
Float | operator| (const Float &l, const Float &r) |
Float | operator & (const Float &l, const Float &r) |
Float | operator^ (const Float &l, const Float &r) |
|
Definition at line 112 of file Float.hpp. 00112 { 00113 return Float(l.value&r.value); 00114 } |
|
Definition at line 100 of file Float.hpp. 00100 { 00101 return Float(l.value<<r.value); 00102 } |
|
Definition at line 104 of file Float.hpp. 00104 { 00105 return Float(l.value>>r.value); 00106 } |
|
Definition at line 116 of file Float.hpp. 00116 { 00117 return Float(l.value^r.value); 00118 } |
|
Definition at line 108 of file Float.hpp. 00108 { 00109 return Float(l.value|r.value); 00110 } |