Warning, file /include/boost/random/detail/generator_bits.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014 #ifndef BOOST_RANDOM_DETAIL_GENERATOR_BITS_HPP
0015 #define BOOST_RANDOM_DETAIL_GENERATOR_BITS_HPP
0016
0017 #include <boost/limits.hpp>
0018
0019 namespace boost {
0020 namespace random {
0021 namespace detail {
0022
0023
0024
0025 template<class URNG>
0026 struct generator_bits {
0027 static std::size_t value() {
0028 return std::numeric_limits<typename URNG::result_type>::digits;
0029 }
0030 };
0031
0032 }
0033 }
0034 }
0035
0036 #endif