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/DComp3.hh File Reference

Go to the source code of this file.

Functions

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


Function Documentation

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

Definition at line 9 of file DComp3.hh.

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

friend bool operator< const Double   l,
const double    d
[inline]
 

Definition at line 13 of file DComp3.hh.

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

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

Definition at line 17 of file DComp3.hh.

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

friend bool operator== const Double   l,
const double    d
[inline]
 

Definition at line 5 of file DComp3.hh.

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

friend bool operator> const Double   l,
const double    d
[inline]
 

Definition at line 21 of file DComp3.hh.

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

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

Definition at line 25 of file DComp3.hh.

00025                                                                    {
00026     return (l.value >= d);
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