template struct sophus::IsUniformRandomBitGeneratorΒΆ

#include <common.h>

template <class TGenerator>
struct IsUniformRandomBitGenerator {
    // fields

    static const bool kValue =       std::is_unsigned<typename TGenerator::result_type>::value&&       std::is_unsigned<decltype(TGenerator::min())>::value&&       std::is_unsigned<decltype(TGenerator::max())>::value;
};