DUNE-FEM (unstable)

C++ concepts

Concepts definitions and utilities to define requirements. More...

Classes

struct  Dune::Concept::Refines< BaseConcepts >
 Base class for refined concepts. More...
 

Functions

template<class C , class... T>
constexpr auto Dune::models ()
 Check if concept is modeled by given types. More...
 

Detailed Description

Concepts definitions and utilities to define requirements.

Function Documentation

◆ models()

template<class C , class... T>
constexpr auto Dune::models ( )
constexpr

Check if concept is modeled by given types.

This will check if the given concept is modeled by the given list of types. This is true if the list of types models all the base concepts that are refined by the given concept and if it satisfies all additional requirements of the latter.

Notice that a concept may be defined for a list of interacting types. The function will check if the given list of types matches the requirements on the whole list. It does not check if each individual type in the list satisfies the concept.

This concept check mechanism is inspired by the concept checking facility in Eric Nieblers range-v3. For more information please refer to the libraries project page https://github.com/ericniebler/range-v3 or this blog entry: http://ericniebler.com/2013/11/23/concept-checking-in-c11. In fact the interface provided here is almost exactly the same as in range-v3. However the implementation differs, because range-v3 uses its own meta-programming library whereas our implementation is more straight forward.

The result is returned as std::integral_constant<bool, ...> which allows to nicely use this method with Hybrid::ifElse.

Template Parameters
CThe concept to check
TThe list of type to check against the concept
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden  |  generated with Hugo v0.80.0 (Mar 28, 23:30, 2024)