sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of the License "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// e32\include\e32math.inl
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#if !defined(__E32MATH_INL__)
|
sl@0
|
19 |
#define __E32MATH_INL__
|
sl@0
|
20 |
|
sl@0
|
21 |
|
sl@0
|
22 |
|
sl@0
|
23 |
|
sl@0
|
24 |
// class TRealX
|
sl@0
|
25 |
|
sl@0
|
26 |
TBool TRealX::operator==(const TRealX &aVal) const
|
sl@0
|
27 |
/**
|
sl@0
|
28 |
@publishedAll
|
sl@0
|
29 |
@released
|
sl@0
|
30 |
|
sl@0
|
31 |
Compares this extended precision number for equality with another.
|
sl@0
|
32 |
|
sl@0
|
33 |
@param aVal A reference to the extended precision value to be compared.
|
sl@0
|
34 |
|
sl@0
|
35 |
@return True, if this extended precision number is equal to aVal;
|
sl@0
|
36 |
false, otherwise.
|
sl@0
|
37 |
*/
|
sl@0
|
38 |
{
|
sl@0
|
39 |
return(Compare(aVal)&EEqual);
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
|
sl@0
|
43 |
|
sl@0
|
44 |
|
sl@0
|
45 |
TBool TRealX::operator!=(const TRealX &aVal) const
|
sl@0
|
46 |
/**
|
sl@0
|
47 |
@publishedAll
|
sl@0
|
48 |
@released
|
sl@0
|
49 |
|
sl@0
|
50 |
Compares this extended precision number for in-equality with another.
|
sl@0
|
51 |
|
sl@0
|
52 |
@param aVal A reference to the extended precision value to be compared.
|
sl@0
|
53 |
|
sl@0
|
54 |
@return True, if this extended precision number is not equal to aVal;
|
sl@0
|
55 |
false, otherwise.
|
sl@0
|
56 |
*/
|
sl@0
|
57 |
{
|
sl@0
|
58 |
return!(Compare(aVal)&EEqual);
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
|
sl@0
|
62 |
|
sl@0
|
63 |
|
sl@0
|
64 |
TBool TRealX::operator>=(const TRealX &aVal) const
|
sl@0
|
65 |
/**
|
sl@0
|
66 |
@publishedAll
|
sl@0
|
67 |
@released
|
sl@0
|
68 |
|
sl@0
|
69 |
Compares this extended precision number for being greater than
|
sl@0
|
70 |
or equal to another.
|
sl@0
|
71 |
|
sl@0
|
72 |
@param aVal A reference to the extended precision value to be compared.
|
sl@0
|
73 |
|
sl@0
|
74 |
@return True, if this extended precision number is greater than or equal
|
sl@0
|
75 |
to aVal, false, otherwise.
|
sl@0
|
76 |
*/
|
sl@0
|
77 |
{
|
sl@0
|
78 |
return(Compare(aVal)&(EEqual|EGreaterThan));
|
sl@0
|
79 |
}
|
sl@0
|
80 |
|
sl@0
|
81 |
|
sl@0
|
82 |
|
sl@0
|
83 |
|
sl@0
|
84 |
TBool TRealX::operator<=(const TRealX &aVal) const
|
sl@0
|
85 |
/**
|
sl@0
|
86 |
@publishedAll
|
sl@0
|
87 |
@released
|
sl@0
|
88 |
|
sl@0
|
89 |
Compares this extended precision number for being less than
|
sl@0
|
90 |
or equal to another.
|
sl@0
|
91 |
|
sl@0
|
92 |
@param aVal A reference to the extended precision value to be compared.
|
sl@0
|
93 |
|
sl@0
|
94 |
@return True, if this extended precision number is less than or equal
|
sl@0
|
95 |
to aVal, false, otherwise.
|
sl@0
|
96 |
*/
|
sl@0
|
97 |
{
|
sl@0
|
98 |
return(Compare(aVal)&(ELessThan|EEqual));
|
sl@0
|
99 |
}
|
sl@0
|
100 |
|
sl@0
|
101 |
|
sl@0
|
102 |
|
sl@0
|
103 |
|
sl@0
|
104 |
TBool TRealX::operator>(const TRealX &aVal) const
|
sl@0
|
105 |
/**
|
sl@0
|
106 |
@publishedAll
|
sl@0
|
107 |
@released
|
sl@0
|
108 |
|
sl@0
|
109 |
Compares this extended precision number for being greater than
|
sl@0
|
110 |
another.
|
sl@0
|
111 |
|
sl@0
|
112 |
@param aVal A reference to the extended precision value to be compared.
|
sl@0
|
113 |
|
sl@0
|
114 |
@return True, if this extended precision number is greater than aVal,
|
sl@0
|
115 |
false, otherwise.
|
sl@0
|
116 |
*/
|
sl@0
|
117 |
{
|
sl@0
|
118 |
return(Compare(aVal)&EGreaterThan);
|
sl@0
|
119 |
}
|
sl@0
|
120 |
|
sl@0
|
121 |
|
sl@0
|
122 |
|
sl@0
|
123 |
|
sl@0
|
124 |
TBool TRealX::operator<(const TRealX &aVal) const
|
sl@0
|
125 |
/**
|
sl@0
|
126 |
@publishedAll
|
sl@0
|
127 |
@released
|
sl@0
|
128 |
|
sl@0
|
129 |
Compares this extended precision number for being less than
|
sl@0
|
130 |
another.
|
sl@0
|
131 |
|
sl@0
|
132 |
@param aVal A reference to the extended precision value to be compared.
|
sl@0
|
133 |
|
sl@0
|
134 |
@return True, if this extended precision number is less than aVal,
|
sl@0
|
135 |
false, otherwise.
|
sl@0
|
136 |
*/
|
sl@0
|
137 |
{
|
sl@0
|
138 |
return(Compare(aVal)&ELessThan);
|
sl@0
|
139 |
}
|
sl@0
|
140 |
|
sl@0
|
141 |
#endif
|