|
YARP
Yet Another Robot Platform
|
|
Go to the documentation of this file.
10 #ifndef YARP_OS_NETINT64_H
11 #define YARP_OS_NETINT64_H
31 #ifdef YARP_LITTLE_ENDIAN
35 #else // YARP_LITTLE_ENDIAN
37 typedef std::int64_t RawNetInt64;
46 std::int64_t raw_value;
47 std::int64_t swap(std::int64_t x)
const;
48 RawNetInt64 get()
const;
49 void set(RawNetInt64 v);
54 operator RawNetInt64()
const;
55 RawNetInt64
operator+(RawNetInt64 v)
const;
56 RawNetInt64
operator-(RawNetInt64 v)
const;
57 RawNetInt64
operator*(RawNetInt64 v)
const;
58 RawNetInt64
operator/(RawNetInt64 v)
const;
65 #endif // YARP_LITTLE_ENDIAN
70 #endif // YARP_OS_NETINT64_H
Vector & operator*=(Vector &a, double k)
Vector-scalar product operator (defined in Math.h).
Vector & operator+=(Vector &a, const double &s)
Addition operator between a scalar and a vector (defined in Math.h).
std::int64_t NetInt64
Definition of the NetInt64 type.
Vector operator/(const Vector &a, const Vector &b)
Vector-vector element-wise division operator (defined in Math.h).
Vector operator+(const Vector &a, const double &s)
Mathematical operations.
Vector & operator/=(Vector &a, const Vector &b)
Vector-vector element-wise division operator (defined in Math.h).
Vector operator*(double k, const Vector &b)
Scalar-vector product operator (defined in Math.h).
Vector & operator-=(Vector &a, const double &s)
Subtraction operator between a vector and a scalar (defined in Math.h).
The main, catch-all namespace for YARP.
Vector operator-(const Vector &a, const double &s)
Subtraction operator between a vector and a scalar (defined in Math.h).