kakoune/src/units.hh

113 lines
3.2 KiB
C++
Raw Normal View History

#ifndef units_hh_INCLUDED
#define units_hh_INCLUDED
namespace Kakoune
{
template<typename RealType, typename ValueType = int>
class StronglyTypedInteger
{
public:
2012-09-04 23:54:10 +02:00
explicit constexpr StronglyTypedInteger(ValueType value)
2013-01-04 18:39:13 +01:00
: m_value(value) {}
2012-09-04 23:54:10 +02:00
constexpr RealType operator+(const RealType& other) const
{ return RealType(m_value + other.m_value); }
2012-09-04 23:54:10 +02:00
constexpr RealType operator-(const RealType& other) const
{ return RealType(m_value - other.m_value); }
2012-09-04 23:54:10 +02:00
constexpr RealType operator*(const RealType& other) const
{ return RealType(m_value * other.m_value); }
2012-09-04 23:54:10 +02:00
constexpr RealType operator/(const RealType& other) const
{ return RealType(m_value / other.m_value); }
RealType& operator+=(const RealType& other)
{ m_value += other.m_value; return static_cast<RealType&>(*this); }
RealType& operator-=(const RealType& other)
{ m_value -= other.m_value; return static_cast<RealType&>(*this); }
RealType& operator*=(const RealType& other)
{ m_value *= other.m_value; return static_cast<RealType&>(*this); }
RealType& operator/=(const RealType& other)
{ m_value /= other.m_value; return static_cast<RealType&>(*this); }
RealType& operator++()
{ ++m_value; return static_cast<RealType&>(*this); }
RealType& operator--()
{ --m_value; return static_cast<RealType&>(*this); }
RealType operator++(int)
{ RealType backup(static_cast<RealType&>(*this)); ++m_value; return backup; }
RealType operator--(int)
{ RealType backup(static_cast<RealType&>(*this)); --m_value; return backup; }
2012-09-04 23:54:10 +02:00
constexpr RealType operator-() { return RealType(-m_value); }
2012-09-04 23:54:10 +02:00
constexpr bool operator==(const RealType& other) const
{ return m_value == other.m_value; }
2012-09-04 23:54:10 +02:00
constexpr bool operator!=(const RealType& other) const
{ return m_value != other.m_value; }
2012-09-04 23:54:10 +02:00
constexpr bool operator<(const RealType& other) const
{ return m_value < other.m_value; }
2012-09-04 23:54:10 +02:00
constexpr bool operator<=(const RealType& other) const
{ return m_value <= other.m_value; }
2012-09-04 23:54:10 +02:00
constexpr bool operator>(const RealType& other) const
{ return m_value > other.m_value; }
2012-09-04 23:54:10 +02:00
constexpr bool operator>=(const RealType& other) const
{ return m_value >= other.m_value; }
2012-09-04 23:54:10 +02:00
constexpr bool operator!() const
{ return !m_value; }
2012-09-04 23:54:10 +02:00
explicit constexpr operator ValueType() const { return m_value; }
explicit constexpr operator bool() const { return m_value; }
private:
ValueType m_value;
};
struct LineCount : public StronglyTypedInteger<LineCount, int>
{
2012-09-04 23:54:10 +02:00
constexpr LineCount(int value) : StronglyTypedInteger<LineCount>(value) {}
};
2012-09-04 23:54:10 +02:00
inline constexpr LineCount operator"" _line(unsigned long long int value)
{
return LineCount(value);
}
2012-10-11 00:13:31 +02:00
struct ByteCount : public StronglyTypedInteger<ByteCount, int>
{
constexpr ByteCount(int value) : StronglyTypedInteger<ByteCount>(value) {}
};
inline constexpr ByteCount operator"" _byte(unsigned long long int value)
{
return ByteCount(value);
}
struct CharCount : public StronglyTypedInteger<CharCount, int>
{
2012-09-04 23:54:10 +02:00
constexpr CharCount(int value) : StronglyTypedInteger<CharCount>(value) {}
};
2012-09-04 23:54:10 +02:00
inline constexpr CharCount operator"" _char(unsigned long long int value)
{
return CharCount(value);
}
}
#endif // units_hh_INCLUDED