7#ifndef YARP_OS_NETUINT64_H
8#define YARP_OS_NETUINT64_H
27#ifdef YARP_LITTLE_ENDIAN
42 std::uint64_t raw_value;
43 std::uint64_t swap(std::uint64_t x)
const;
44 RawNetUint64 get()
const;
45 void set(RawNetUint64 v);
49 NetUint64(RawNetUint64 val);
50 operator RawNetUint64()
const;
51 RawNetUint64
operator+(RawNetUint64 v)
const;
52 RawNetUint64
operator-(RawNetUint64 v)
const;
53 RawNetUint64
operator*(RawNetUint64 v)
const;
54 RawNetUint64
operator/(RawNetUint64 v)
const;
A mini-server for performing network communication in the background.
BufferedPort()
Constructor.
Vector operator+(const Vector &a, const double &s)
Mathematical operations.
Vector operator-(const Vector &a, const double &s)
Subtraction operator between a vector and a scalar (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).
Vector & operator+=(Vector &a, const double &s)
Addition operator between a scalar and a vector (defined in Math.h).
Vector & operator/=(Vector &a, const Vector &b)
Vector-vector element-wise division operator (defined in Math.h).
Vector operator/(const Vector &a, const Vector &b)
Vector-vector element-wise division operator (defined in Math.h).
Vector & operator*=(Vector &a, double k)
Vector-scalar product operator (defined in Math.h).
An interface to the operating system, including Port based communication.
std::uint64_t NetUint64
Definition of the NetInt64 type.