/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2020-08-17 * Changed: 2021-07-14 * * */ #ifndef LS_STD_LONG_HPP #define LS_STD_LONG_HPP #include #include #include "IBoxing.hpp" #include #include #include namespace ls_std { class Long : public ls_std::Class, public ls_std::IBoxing { public: explicit Long(ls_std::long_type _value); Long(); ~Long() override = default; // conversion operator operator ls_std::long_type() const; // assignment operators ls_std::Long &operator=(ls_std::long_type _value); // arithmetic operators ls_std::long_type operator-() const; ls_std::long_type operator+(const ls_std::Long &_long) const; ls_std::long_type operator+(ls_std::long_type _value) const; ls_std::long_type operator*(const ls_std::Long &_long) const; ls_std::long_type operator*(ls_std::long_type _value) const; ls_std::long_type operator-(const ls_std::Long &_long) const; ls_std::long_type operator-(ls_std::long_type _value) const; ls_std::long_type operator/(const ls_std::Long &_long) const; ls_std::long_type operator/(ls_std::long_type _value) const; ls_std::long_type operator%(const ls_std::Long &_long) const; ls_std::long_type operator%(ls_std::long_type _value) const; // compound operators ls_std::Long &operator+=(const ls_std::Long &_long); ls_std::Long &operator+=(ls_std::long_type _value); ls_std::Long &operator-=(const ls_std::Long &_long); ls_std::Long &operator-=(ls_std::long_type _value); ls_std::Long &operator*=(const ls_std::Long &_long); ls_std::Long &operator*=(ls_std::long_type _value); ls_std::Long &operator/=(const ls_std::Long &_long); ls_std::Long &operator/=(ls_std::long_type _value); // comparison operators bool operator==(const ls_std::Long &_long) const; bool operator==(ls_std::long_type _value) const; bool operator!=(const ls_std::Long &_long) const; bool operator!=(ls_std::long_type _value) const; bool operator>(const ls_std::Long &_long) const; bool operator>(ls_std::long_type _value) const; bool operator>=(const ls_std::Long &_long) const; bool operator>=(ls_std::long_type _value) const; bool operator<(const ls_std::Long &_long) const; bool operator<(ls_std::long_type _value) const; bool operator<=(const ls_std::Long &_long) const; bool operator<=(ls_std::long_type _value) const; // logical operators friend bool operator!(const ls_std::Long &_long) { return !_long.value; } bool operator&&(const ls_std::Long &_long) const; bool operator&&(ls_std::long_type _value) const; bool operator&&(bool _expression) const; bool operator||(const ls_std::Long &_long) const; bool operator||(ls_std::long_type _value) const; bool operator||(bool _expression) const; // increment / decrement operator void operator++(); void operator--(); // implementation void parse(std::string _parseText) override; std::string toString() override; // additional functionality ls_std::long_type getValue() const; private: ls_std::long_type value{}; }; } #endif