#ifndef _LIBCPP___RANDOM_IS_VALID_H
#define _LIBCPP___RANDOM_IS_VALID_H
#include <__config>
#include <__type_traits/enable_if.h>
#include <__type_traits/integral_constant.h>
#include <__type_traits/is_same.h>
#include <__type_traits/is_unsigned.h>
#include <__utility/declval.h>
#include <cstdint>
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
# pragma GCC system_header
#endif
_LIBCPP_BEGIN_NAMESPACE_STD
template <class>
struct __libcpp_random_is_valid_realtype : false_type { … };
template <>
struct __libcpp_random_is_valid_realtype<float> : true_type { … };
template <>
struct __libcpp_random_is_valid_realtype<double> : true_type { … };
template <>
struct __libcpp_random_is_valid_realtype<long double> : true_type { … };
template <class>
struct __libcpp_random_is_valid_inttype : false_type { … };
template <>
struct __libcpp_random_is_valid_inttype<int8_t> : true_type { … };
template <>
struct __libcpp_random_is_valid_inttype<short> : true_type { … };
template <>
struct __libcpp_random_is_valid_inttype<int> : true_type { … };
template <>
struct __libcpp_random_is_valid_inttype<long> : true_type { … };
template <>
struct __libcpp_random_is_valid_inttype<long long> : true_type { … };
template <>
struct __libcpp_random_is_valid_inttype<uint8_t> : true_type { … };
template <>
struct __libcpp_random_is_valid_inttype<unsigned short> : true_type { … };
template <>
struct __libcpp_random_is_valid_inttype<unsigned int> : true_type { … };
template <>
struct __libcpp_random_is_valid_inttype<unsigned long> : true_type { … };
template <>
struct __libcpp_random_is_valid_inttype<unsigned long long> : true_type { … };
#ifndef _LIBCPP_HAS_NO_INT128
template <>
struct __libcpp_random_is_valid_inttype<__int128_t> : true_type { … };
template <>
struct __libcpp_random_is_valid_inttype<__uint128_t> : true_type { … };
#endif
template <class, class = void>
struct __libcpp_random_is_valid_urng : false_type { … };
__libcpp_random_is_valid_urng<_Gp, __enable_if_t<is_unsigned<typename _Gp::result_type>::value && _IsSame<decltype(std::declval<_Gp &>()()), typename _Gp::result_type>::value>>;
_LIBCPP_END_NAMESPACE_STD
#endif