Update contrib.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32\include\e32math.inl
18 #if !defined(__E32MATH_INL__)
19 #define __E32MATH_INL__
26 TBool TRealX::operator==(const TRealX &aVal) const
31 Compares this extended precision number for equality with another.
33 @param aVal A reference to the extended precision value to be compared.
35 @return True, if this extended precision number is equal to aVal;
39 return(Compare(aVal)&EEqual);
45 TBool TRealX::operator!=(const TRealX &aVal) const
50 Compares this extended precision number for in-equality with another.
52 @param aVal A reference to the extended precision value to be compared.
54 @return True, if this extended precision number is not equal to aVal;
58 return!(Compare(aVal)&EEqual);
64 TBool TRealX::operator>=(const TRealX &aVal) const
69 Compares this extended precision number for being greater than
72 @param aVal A reference to the extended precision value to be compared.
74 @return True, if this extended precision number is greater than or equal
75 to aVal, false, otherwise.
78 return(Compare(aVal)&(EEqual|EGreaterThan));
84 TBool TRealX::operator<=(const TRealX &aVal) const
89 Compares this extended precision number for being less than
92 @param aVal A reference to the extended precision value to be compared.
94 @return True, if this extended precision number is less than or equal
95 to aVal, false, otherwise.
98 return(Compare(aVal)&(ELessThan|EEqual));
104 TBool TRealX::operator>(const TRealX &aVal) const
109 Compares this extended precision number for being greater than
112 @param aVal A reference to the extended precision value to be compared.
114 @return True, if this extended precision number is greater than aVal,
118 return(Compare(aVal)&EGreaterThan);
124 TBool TRealX::operator<(const TRealX &aVal) const
129 Compares this extended precision number for being less than
132 @param aVal A reference to the extended precision value to be compared.
134 @return True, if this extended precision number is less than aVal,
138 return(Compare(aVal)&ELessThan);