00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054 #ifndef LASS_GUARDIAN_OF_INCLUSION_NUM_MODULO_H
00055 #define LASS_GUARDIAN_OF_INCLUSION_NUM_MODULO_H
00056
00057 #include "num_common.h"
00058 #include "../util/call_traits.h"
00059
00060 namespace lass
00061 {
00062 namespace num
00063 {
00064
00065 template <unsigned N, typename T = int>
00066 class Modulo
00067 {
00068 public:
00069
00070 typedef Modulo<N, T> TSelf;
00071
00072 typedef typename util::CallTraits<T>::TValue TValue;
00073 typedef typename util::CallTraits<T>::TParam TParam;
00074
00075 template <typename U>
00076 struct Rebind
00077 {
00078 typedef Modulo<N, U> Type;
00079 };
00080
00081 Modulo(TParam iValue = 0);
00082
00083 Modulo<N, T> operator+() const;
00084 Modulo<N, T> operator-() const;
00085
00086 Modulo<N, T>& operator++();
00087 Modulo<N, T>& operator--();
00088 Modulo<N, T> operator++(int);
00089 Modulo<N, T> operator--(int);
00090
00091 Modulo<N, T>& operator+=(const Modulo<N, T>& iB);
00092 Modulo<N, T>& operator-=(const Modulo<N, T>& iB);
00093 Modulo<N, T>& operator*=(const Modulo<N, T>& iB);
00094 Modulo<N, T>& operator/=(const Modulo<N, T>& iB);
00095
00096 operator T() const;
00097 TParam value() const;
00098
00099 private:
00100
00101 bool isInRange(TParam iValue) const;
00102
00103 TValue value_;
00104 };
00105
00106 template <unsigned N, typename T>
00107 bool operator==(const Modulo<N, T>& iA, const Modulo<N, T>& iB);
00108
00109 template <unsigned N, typename T>
00110 bool operator!=(const Modulo<N, T>& iA, const Modulo<N, T>& iB);
00111
00112 template <unsigned N, typename T>
00113 bool operator<(const Modulo<N, T>& iA, const Modulo<N, T>& iB);
00114
00115 template <unsigned N, typename T>
00116 bool operator>(const Modulo<N, T>& iA, const Modulo<N, T>& iB);
00117
00118 template <unsigned N, typename T>
00119 bool operator<=(const Modulo<N, T>& iA, const Modulo<N, T>& iB);
00120
00121 template <unsigned N, typename T>
00122 bool operator>=(const Modulo<N, T>& iA, const Modulo<N, T>& iB);
00123
00124 template <unsigned N, typename T>
00125 std::ostream& operator<<(std::ostream& iS, const Modulo<N, T>& iM);
00126
00127 template <unsigned N, typename T>
00128 std::istream& operator>>(std::istream& iS, Modulo<N, T>& iM);
00129
00130 }
00131
00132 }
00133
00134 #include "modulo.inl"
00135
00136 #endif
00137
00138