piranha  0.10
Static Public Attributes | List of all members
piranha::key_is_integrable< Key > Class Template Reference

Type trait to detect integrable keys. More...

#include <piranha/math.hpp>

Static Public Attributes

static const bool value = implementation_defined
 Value of the type trait.
 

Detailed Description

template<typename Key>
class piranha::key_is_integrable< Key >

Type trait to detect integrable keys.

This type trait will be true if Key is a key type providing a method with the following signature:

std::pair<T,uncvref_t<Key>> integrate(const std::string &, const symbol_fset &) const;

where T is any type and uncvref_t<Key> is Key without cv/reference qualifiers. Otherwise, the type trait will be false.

If Key does not satisfy piranha::is_key, after the removal of cv/reference qualifiers, a compilation error will be produced.

Definition at line 1858 of file math.hpp.


The documentation for this class was generated from the following file: