hops
IsSetFisherWeightAvailable.hpp
Go to the documentation of this file.
1 #ifndef HOPS_ISSETFISHERWEIGHTAVAILABLE_HPP
2 #define HOPS_ISSETFISHERWEIGHTAVAILABLE_HPP
3 
4 
5 namespace hops {
6  template<typename T, typename = void>
7  struct IsSetFisherWeightAvailable : std::false_type {
8  };
9 
10  template<typename T>
12  std::void_t < decltype(std::declval<T>().setFisherWeight(std::declval<double>()))> > :
13  std::true_type {
14 };
15 }
16 
17 #endif //HOPS_ISSETFISHERWEIGHTAVAILABLE_HPP
hops::IsSetFisherWeightAvailable
Definition: IsSetFisherWeightAvailable.hpp:7
hops
Definition: CsvReader.hpp:8