4 typedef typename base_type::least least;
5 typedef typename base_type::fast fast;
8 - static const least high_bit = 1ul << (Bits - 1u);
9 - static const fast high_bit_fast = 1ul << (Bits - 1u);
11 BOOST_STATIC_CONSTANT( least, high_bit = (least( 1u ) << ( Bits
13 BOOST_STATIC_CONSTANT( fast, high_bit_fast = (fast( 1u ) << ( Bits
20 BOOST_STATIC_CONSTANT( fast, high_bit_fast = base_type::high_bit_fast )
25 - static const least sig_bits = (~( ~(0ul) << Bits));
27 BOOST_STATIC_CONSTANT( least, sig_bits = (~( ~(least( 0u )) << Bits ))
30 BOOST_STATIC_CONSTANT( fast, sig_bits_fast = fast(sig_bits) );