// Copyright 2019 Hans Dembinski // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt // or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_HISTOGRAM_DETAIL_TRY_CAST_HPP #define BOOST_HISTOGRAM_DETAIL_TRY_CAST_HPP #include // BOOST_NORETURN #include #include namespace boost { namespace histogram { namespace detail { template constexpr T* ptr_cast(U*) noexcept { return nullptr; } template constexpr T* ptr_cast(T* p) noexcept { return p; } template constexpr const T* ptr_cast(const T* p) noexcept { return p; } template BOOST_NORETURN T try_cast_impl(std::false_type, std::false_type, U&&) { BOOST_THROW_EXCEPTION(E("type cast error")); } // converting cast template T try_cast_impl(std::false_type, std::true_type, U&& u) noexcept { return static_cast(u); // cast to avoid warnings } // pass-through cast template T&& try_cast_impl(std::true_type, std::true_type, T&& t) noexcept { return std::forward(t); } // cast fails at runtime with exception E instead of compile-time, T must be a value template T try_cast(U&& u) noexcept(std::is_convertible::value) { return try_cast_impl(std::is_same{}, std::is_convertible{}, std::forward(u)); } } // namespace detail } // namespace histogram } // namespace boost #endif