Code to create shared pointers to allow for the wrapper functions in R to work correctly so the live objects do not go out of scope.
More...
|
| SharedInt | operator+ (const int &lhs, const SharedInt &rhs) |
| | Overloads the binary addition operator (+) for an integer left-hand side operand.
|
| |
| SharedInt | operator- (const int &lhs, const SharedInt &rhs) |
| | Overloads the binary subtraction operator (-) for an integer left-hand side operand.
|
| |
| SharedInt | operator* (const int &lhs, const SharedInt &rhs) |
| | Overloads the binary multiplication operator (*) for an integer left-hand side operand.
|
| |
| SharedInt | operator/ (const int &lhs, const SharedInt &rhs) |
| | Overloads the binary division operator (/) for an integer left-hand side operand.
|
| |
| bool | operator< (const int &lhs, const SharedInt &rhs) |
| | Overloads the less-than operator (<) for an integer left-hand side operand.
|
| |
| bool | operator<= (const int &lhs, const SharedInt &rhs) |
| | Overloads the less-than-or-equal-to operator (<=) for an integer left-hand side operand.
|
| |
| bool | operator> (const int &lhs, const SharedInt &rhs) |
| | Overloads the greater-than operator (>) for an integer left-hand side operand.
|
| |
| bool | operator>= (const int &lhs, const SharedInt &rhs) |
| | Overloads the greater-than-or-equal-to operator (>=) for an integer left-hand side operand.
|
| |
| SharedReal | operator+ (const double &lhs, const SharedReal &rhs) |
| | Overloads the binary addition operator (+) for a double left-hand side operand.
|
| |
| SharedReal | operator- (const double &lhs, const SharedReal &rhs) |
| | Overloads the binary subtraction operator (-) for a double left-hand side operand.
|
| |
| SharedReal | operator* (const double &lhs, const SharedReal &rhs) |
| | Overloads the binary multiplication operator (*) for a double left-hand side operand.
|
| |
| SharedReal | operator/ (const double &lhs, const SharedReal &rhs) |
| | Overloads the binary division operator (/) for a double left-hand side operand.
|
| |
| bool | operator< (const bool &lhs, const SharedBoolean &rhs) |
| | Overloads the less-than operator (<) for a boolean left-hand side operand.
|
| |
| bool | operator<= (const bool &lhs, const SharedBoolean &rhs) |
| | Overloads the less-than-or-equal-to operator (<=) for a boolean left-hand side operand.
|
| |
| bool | operator> (const bool &lhs, const SharedBoolean &rhs) |
| | Overloads the greater-than operator (>) for a boolean left-hand side operand.
|
| |
| bool | operator>= (const bool &lhs, const SharedBoolean &rhs) |
| | Overloads the greater-than-or-equal-to operator (>=) for a boolean left-hand side operand.
|
| |
Code to create shared pointers to allow for the wrapper functions in R to work correctly so the live objects do not go out of scope.
- Copyright
- This file is part of the NOAA, National Marine Fisheries Service Fisheries Integrated Modeling System project. See LICENSE in the source folder for reuse information.