proconlib

This documentation is automatically generated by competitive-verifier/competitive-verifier

View the Project on GitHub anqooqie/proconlib

:heavy_check_mark: Check whether T has the member function mod() (tools/has_mod.hpp)

template <typename T>
struct has_mod {
  static constexpr bool value;
};

template <typename T>
inline constexpr bool has_mod_v = has_mod<T>::value;

If an instance of T has the member function mod(), tools::has_mod<T>::value is true. Otherwise, it is false.

Constraints

Time Complexity

License

Author

Required by

Verified with

Code

#ifndef TOOLS_HAS_MOD_HPP
#define TOOLS_HAS_MOD_HPP

#include <type_traits>
#include <utility>

namespace tools {
  template <typename T, typename = ::std::void_t<>>
  struct has_mod : ::std::false_type {};

  template <typename T>
  struct has_mod<T, ::std::void_t<decltype(::std::declval<T>().mod())>> : ::std::true_type {};

  template <typename T>
  inline constexpr bool has_mod_v = ::tools::has_mod<T>::value;
}

#endif
#line 1 "tools/has_mod.hpp"



#include <type_traits>
#include <utility>

namespace tools {
  template <typename T, typename = ::std::void_t<>>
  struct has_mod : ::std::false_type {};

  template <typename T>
  struct has_mod<T, ::std::void_t<decltype(::std::declval<T>().mod())>> : ::std::true_type {};

  template <typename T>
  inline constexpr bool has_mod_v = ::tools::has_mod<T>::value;
}


Back to top page