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

Go to the source code of this file.

Functions

Double operator+ (const Double &l, const double d)
Double operator- (const Double &l, const double d)
Double operator * (const Double &l, const double d)
Double operator/ (const Double &l, const double d)


Function Documentation

friend Double operator * const Double   l,
const double    d
[inline]
 

Definition at line 13 of file DArithm3.hh.

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

friend Double operator+ const Double   l,
const double    d
[inline]
 

Definition at line 5 of file DArithm3.hh.

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

friend Double operator- const Double   l,
const double    d
[inline]
 

Definition at line 9 of file DArithm3.hh.

00009                                                                   {
00010     return Double( l.value - d );
00011 }

friend Double operator/ const Double   l,
const double    d
[inline]
 

Definition at line 17 of file DArithm3.hh.

00017                                                                   {
00018     return Double( l.value / d );
00019 }


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