1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
// This file is part of CAF, the C++ Actor Framework. See the file LICENSE in
// the main distribution directory for license terms and copyright or visit
// https://github.com/actor-framework/actor-framework/blob/master/LICENSE.
#pragma once
#include <string>
#include "caf/detail/comparable.hpp"
namespace caf {
/// Unit is analogous to `void`, but can be safely returned, stored, etc.
/// to enable higher-order abstraction without cluttering code with
/// exceptions for `void` (which can't be stored, for example).
struct unit_t : detail::comparable<unit_t> {
constexpr unit_t() noexcept = default;
constexpr unit_t(const unit_t&) noexcept = default;
constexpr unit_t& operator=(const unit_t&) noexcept = default;
template <class T>
explicit constexpr unit_t(T&&) noexcept {
// nop
}
static constexpr int compare(const unit_t&) noexcept {
return 0;
}
template <class... Ts>
constexpr unit_t operator()(Ts&&...) const noexcept {
return {};
}
};
static constexpr unit_t unit = unit_t{};
/// @relates unit_t
template <class Processor>
void serialize(Processor&, const unit_t&, unsigned int) {
// nop
}
/// @relates unit_t
inline std::string to_string(const unit_t&) {
return "unit";
}
template <class T>
struct lift_void {
using type = T;
};
template <>
struct lift_void<void> {
using type = unit_t;
};
template <class T>
struct unlift_void {
using type = T;
};
template <>
struct unlift_void<unit_t> {
using type = void;
};
} // namespace caf
|