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

C:/temp/src/j2k/Beta/Math/Double/DComp1.hh File Reference

Go to the source code of this file.

Functions

bool operator== (const Double &l, const Double &r)
bool operator!= (const Double &l, const Double &r)
bool operator< (const Double &l, const Double &r)
bool operator<= (const Double &l, const Double &r)
bool operator> (const Double &l, const Double &r)
bool operator>= (const Double &l, const Double &r)


Function Documentation

friend bool operator!= const Double   l,
const Double   r
[inline]
 

Definition at line 9 of file DComp1.hh.

00009                                                                     {
00010     return (l.value != r.value);
00011   }

friend bool operator< const Double   l,
const Double   r
[inline]
 

Definition at line 13 of file DComp1.hh.

00013                                                                     {
00014     return (l.value <  r.value);
00015   }

friend bool operator<= const Double   l,
const Double   r
[inline]
 

Definition at line 17 of file DComp1.hh.

00017                                                                     {
00018     return (l.value <= r.value);
00019   }

friend bool operator== const Double   l,
const Double   r
[inline]
 

Definition at line 5 of file DComp1.hh.

00005                                                                     {
00006     return (l.value == r.value);
00007   }

friend bool operator> const Double   l,
const Double   r
[inline]
 

Definition at line 21 of file DComp1.hh.

00021                                                                     {
00022     return (l.value >  r.value);
00023   }

friend bool operator>= const Double   l,
const Double   r
[inline]
 

Definition at line 25 of file DComp1.hh.

00025                                                                     {
00026     return (l.value >= r.value);
00027   }


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