/*************************************************************************** * Copyright (c) Johan Mabille, Sylvain Corlay and Wolf Vollprecht * * Copyright (c) QuantStack * * * * Distributed under the terms of the BSD 3-Clause License. * * * * The full license is in the file LICENSE, distributed with this software. * ****************************************************************************/ #ifndef XTL_XHALF_FLOAT_HPP #define XTL_XHALF_FLOAT_HPP #include "xtype_traits.hpp" #include "xhalf_float_impl.hpp" namespace xtl { using half_float = half_float::half; template <> struct is_scalar : std::true_type { }; template <> struct is_arithmetic : std::true_type { }; template <> struct is_signed : std::true_type { }; template <> struct is_floating_point : std::true_type { }; } #endif