28#include "./internal/config.hpp"
29#include "./internal/comparable.hpp"
30#include "./internal/export.hpp"
39class null :
private internal::comparable<null> {
44 null(
decltype(
nullptr)) {}
47 friend bool operator==(
const null&,
const null&) {
return true; }
49 friend bool operator<(
const null&,
const null&) {
return false; }
53PN_CPP_EXTERN std::ostream&
operator<<(std::ostream&,
const null&);
The type of the AMQP null value.
Definition: null.hpp:39
friend bool operator==(const null &, const null &)
null instances are always equal
Definition: null.hpp:47
friend bool operator<(const null &, const null &)
null instances are never unequal
Definition: null.hpp:49
The main Proton namespace.
Definition: annotation_key.hpp:33
std::ostream & operator<<(std::ostream &, const binary &)
Print a binary value.