some formating
This commit is contained in:
15
ml.h
15
ml.h
@@ -181,32 +181,17 @@ public:
|
||||
|
||||
|
||||
bool operator==(MlValue other) const;
|
||||
|
||||
bool operator!=(const MlValue &other) const;
|
||||
|
||||
|
||||
bool operator>=(const MlValue &other) const;
|
||||
|
||||
bool operator<=(const MlValue &other) const;
|
||||
|
||||
bool operator>(const MlValue &other) const;
|
||||
|
||||
bool operator<(const MlValue &other) const;
|
||||
|
||||
|
||||
// This function adds two lisp values, and returns the lisp value result.
|
||||
MlValue operator+(const MlValue &other) const;
|
||||
|
||||
// This function subtracts two lisp values, and returns the lisp value result.
|
||||
MlValue operator-(const MlValue &other) const;
|
||||
|
||||
// This function multiplies two lisp values, and returns the lisp value result.
|
||||
MlValue operator*(const MlValue &other) const;
|
||||
|
||||
// This function divides two lisp values, and returns the lisp value result.
|
||||
MlValue operator/(const MlValue &other) const;
|
||||
|
||||
// This function finds the remainder of two lisp values, and returns the lisp value result.
|
||||
MlValue operator%(const MlValue &other) const;
|
||||
|
||||
// Get the name of the type of this value
|
||||
|
||||
Reference in New Issue
Block a user