Edit: /usr/include/boost/hana/if.hpp (1834B)
/*!
@file
Defines `boost::hana::if_`.
@copyright Louis Dionne 2013-2017
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#ifndef BOOST_HANA_IF_HPP
#define BOOST_HANA_IF_HPP
#include
#include
#include
#include
#include
BOOST_HANA_NAMESPACE_BEGIN
//! @cond
template
constexpr decltype(auto) if_t::operator()(Cond&& cond, Then&& then_, Else&& else_) const {
using Bool = typename hana::tag_of::type;
using If = BOOST_HANA_DISPATCH_IF(if_impl,
hana::Logical::value
);
#ifndef BOOST_HANA_CONFIG_DISABLE_CONCEPT_CHECKS
static_assert(hana::Logical::value,
"hana::if_(cond, then, else) requires 'cond' to be a Logical");
#endif
return If::apply(static_cast(cond),
static_cast(then_),
static_cast(else_));
}
//! @endcond
namespace detail {
template
struct hold {
T value;
constexpr T&& operator()() && { return static_cast(value); }
};
}
template
struct if_impl> : default_ {
template
static constexpr auto apply(C&& c, T&& t, E&& e) {
return hana::eval_if(static_cast(c),
detail::hold{static_cast(t)},
detail::hold{static_cast(e)}
);
}
};
BOOST_HANA_NAMESPACE_END
#endif // !BOOST_HANA_IF_HPP