LongPort OpenAPI C++ SDK
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator
decimal.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <ostream>
4 #include <string>
5 #include <utility>
6 
7 typedef struct lb_decimal_t lb_decimal_t;
8 
9 namespace longport {
10 
11 class Decimal
12 {
13 private:
14  lb_decimal_t* value_;
15 
16 public:
17  Decimal(const lb_decimal_t* other);
18  Decimal(const Decimal& other);
20  Decimal(const char* str);
22  Decimal(const std::string& str);
24  Decimal(double other);
28  Decimal(double other, uint32_t dp);
30 
31  Decimal& operator=(const Decimal& other);
32 
33  operator const lb_decimal_t*() const;
34  operator lb_decimal_t*();
35  operator double() const;
36 
37  Decimal operator+(const Decimal& other) const;
38  Decimal& operator+=(const Decimal& other);
39  Decimal operator-(const Decimal& other) const;
40  Decimal& operator-=(const Decimal& other);
41  Decimal operator*(const Decimal& other) const;
42  Decimal& operator*=(const Decimal& other);
43  Decimal operator/(const Decimal& other) const;
44  Decimal& operator/=(const Decimal& other);
45  Decimal operator%(const Decimal& other) const;
46  Decimal& operator%=(const Decimal& other);
47  Decimal operator-() const;
48  bool operator>(const Decimal& other) const;
49  bool operator>=(const Decimal& other) const;
50  bool operator==(const Decimal& other) const;
51  bool operator<(const Decimal& other) const;
52  bool operator<=(const Decimal& other) const;
53  double to_double() const;
54 
56  void abs();
57 
59  void ceil();
60 
62  void floor();
63 
65  void fract();
66 
68  bool is_negative() const;
69 
71  bool is_positive() const;
72 
74  bool is_zero() const;
75 
77  Decimal max(const Decimal& other) const;
78 
80  Decimal min(const Decimal& other) const;
81 
83  void normalize();
84 
88  void round();
89 
94  void round(uint32_t dp);
95 
98  void trunc();
99 
101  void sin();
102 
104  void cos();
105 
108  void tan();
109 
111  void sqrt();
112 
115  void pow(const Decimal& exp);
116 
119  void ln();
120 
122  void log10();
123 
126  void exp();
127 
132  void exp_with_tolerance(const Decimal& tolerance);
133 
136  void erf();
137 
139  void norm_pdf();
140 
141  std::string to_string() const;
142 };
143 
144 std::ostream&
145 operator<<(std::ostream& stream, const Decimal& value);
146 
147 } // namespace longport
Definition: decimal.hpp:12
void sin()
Computes the sine of a number (in radians)
Decimal(const lb_decimal_t *other)
Decimal operator-(const Decimal &other) const
bool is_zero() const
Returns true if this Decimal number is equivalent to zero.
void abs()
Computes the absolute value.
void fract()
Returns a new Decimal representing the fractional portion of the number.
Decimal(const Decimal &other)
void floor()
Returns the largest integer less than or equal to a number.
Decimal & operator/=(const Decimal &other)
Decimal & operator%=(const Decimal &other)
double to_double() const
Decimal min(const Decimal &other) const
Returns the minimum of the two numbers.
Decimal operator/(const Decimal &other) const
Decimal(double other)
Constructs a new Decimal number from double.
void norm_pdf()
The Probability density function for a Normal distribution.
bool operator>=(const Decimal &other) const
bool is_negative() const
Returns true if the decimal is negative.
void sqrt()
The square root of a Decimal. Uses a standard Babylonian method.
Decimal & operator+=(const Decimal &other)
void log10()
Calculates the base 10 logarithm of a specified Decimal number.
Decimal(const std::string &str)
Constructs a new Decimal number from string.
void round(uint32_t dp)
Decimal(double other, uint32_t dp)
Decimal & operator=(const Decimal &other)
bool is_positive() const
Returns true if the decimal is positive.
Decimal & operator-=(const Decimal &other)
Decimal operator+(const Decimal &other) const
Decimal max(const Decimal &other) const
Returns the maximum of the two numbers.
void pow(const Decimal &exp)
bool operator<(const Decimal &other) const
void normalize()
Strips any trailing zero’s from a Decimal and converts -0 to 0.
bool operator==(const Decimal &other) const
Decimal & operator*=(const Decimal &other)
Decimal(const char *str)
Constructs a new Decimal number from string.
void exp_with_tolerance(const Decimal &tolerance)
void ceil()
Returns the smallest integer greater than or equal to a number.
bool operator>(const Decimal &other) const
Decimal operator-() const
std::string to_string() const
Decimal operator*(const Decimal &other) const
void cos()
Computes the cosine of a number (in radians)
Decimal operator%(const Decimal &other) const
bool operator<=(const Decimal &other) const
struct lb_decimal_t lb_decimal_t
Definition: decimal.hpp:7
Definition: async_result.hpp:7
std::ostream & operator<<(std::ostream &stream, const Decimal &value)