Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

Class template is_abstract_class_or_function

boost::math::fpc::is_abstract_class_or_function

Synopsis

// In header: <boost/test/tools/floating_point_comparison.hpp>

template<typename T> 
class is_abstract_class_or_function {
public:

  // private static functions
  template<typename U> static char test(U(*));
  template<typename U> static Two test(...);

  // public data members
  static const bool value;
};

Description

is_abstract_class_or_function private static functions

  1. template<typename U> static char test(U(*));
  2. template<typename U> static Two test(...);

PrevUpHomeNext