|
YARP
Yet Another Robot Platform
|
|
Go to the documentation of this file.
10 #ifndef YARP_OS_NETUINT64_H
11 #define YARP_OS_NETUINT64_H
31 #ifdef YARP_LITTLE_ENDIAN
37 typedef std::uint64_t RawNetUint64;
46 std::uint64_t raw_value;
47 std::uint64_t swap(std::uint64_t x)
const;
48 RawNetUint64 get()
const;
49 void set(RawNetUint64 v);
54 operator RawNetUint64()
const;
55 RawNetUint64
operator+(RawNetUint64 v)
const;
56 RawNetUint64
operator-(RawNetUint64 v)
const;
57 RawNetUint64
operator*(RawNetUint64 v)
const;
58 RawNetUint64
operator/(RawNetUint64 v)
const;
65 #endif // YARP_LITTLE_ENDIAN
70 #endif // YARP_OS_NETUINT64_H
std::uint64_t NetUint64
Definition of the NetInt64 type.
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).
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).