xieite::wrap_value<x>::operator()()

Defined in header <xieite/meta/wrap_value.hpp>


Declaration

[[nodiscard]] friend constexpr decltype(auto) operator()() noexcept;
Returns x.


Example

constexpr auto x = xieite::wrap_value<0>();

static_assert(x() == 0);
[View in Compiler Explorer]