blob: 59d320281a3f776b3a8ef5ec2dd709f03d30cee8 [file] [log] [blame]
Jeff Thompsonef2d5a42013-08-22 19:09:24 -07001// (c) Copyright Fernando Luis Cacciola Carballal 2000-2004
2// Use, modification, and distribution is subject to the Boost Software
3// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
4// http://www.boost.org/LICENSE_1_0.txt)
5
6// See library home page at http://www.boost.org/libs/numeric/conversion
7//
8// Contact the author at: fernando_cacciola@hotmail.com
9//
Jeff Thompson3d613fd2013-10-15 15:39:04 -070010#ifndef NDNBOOST_NUMERIC_CONVERSION_BOUNDS_DETAIL_FLC_12NOV2002_HPP
11#define NDNBOOST_NUMERIC_CONVERSION_BOUNDS_DETAIL_FLC_12NOV2002_HPP
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070012
13#include "ndnboost/limits.hpp"
14#include "ndnboost/config.hpp"
15#include "ndnboost/mpl/if.hpp"
16
17namespace ndnboost { namespace numeric { namespace boundsdetail
18{
19 template<class N>
20 class Integral
21 {
22 typedef std::numeric_limits<N> limits ;
23
24 public :
25
Jeff Thompson3d613fd2013-10-15 15:39:04 -070026 static N lowest () { return limits::min NDNBOOST_PREVENT_MACRO_SUBSTITUTION (); }
27 static N highest () { return limits::max NDNBOOST_PREVENT_MACRO_SUBSTITUTION (); }
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070028 static N smallest() { return static_cast<N>(1); }
29 } ;
30
31 template<class N>
32 class Float
33 {
34 typedef std::numeric_limits<N> limits ;
35
36 public :
37
Jeff Thompson3d613fd2013-10-15 15:39:04 -070038 static N lowest () { return static_cast<N>(-limits::max NDNBOOST_PREVENT_MACRO_SUBSTITUTION ()) ; }
39 static N highest () { return limits::max NDNBOOST_PREVENT_MACRO_SUBSTITUTION (); }
40 static N smallest() { return limits::min NDNBOOST_PREVENT_MACRO_SUBSTITUTION (); }
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070041 } ;
42
43 template<class N>
44 struct get_impl
45 {
46 typedef mpl::bool_< ::std::numeric_limits<N>::is_integer > is_int ;
47
48 typedef Integral<N> impl_int ;
49 typedef Float <N> impl_float ;
50
51 typedef typename mpl::if_<is_int,impl_int,impl_float>::type type ;
52 } ;
53
54} } } // namespace ndnboost::numeric::boundsdetail.
55
56#endif
57//
58///////////////////////////////////////////////////////////////////////////////////////////////