Base class template for function classes.
More...
#include <dune/common/function.hh>
Public Types |
typedef RawRangeType | RangeType |
| Raw type of input variable with removed reference and constness.
|
typedef RawDomainType | DomainType |
| Raw type of output variable with removed reference and constness.
|
Public Member Functions |
void | evaluate (Domain x, Range y) const |
| Function evaluation.
|
Detailed Description
template<class Domain, class Range>
class Dune::Function< Domain, Range >
Base class template for function classes.
- Template Parameters
-
Domain | Type of input variable. This could be some 'const T' or 'const T&'. |
Range | Type of output variable. This should be some non-const 'T&' to allow to return results. |
Member Typedef Documentation
template<class Domain, class Range>
Raw type of output variable with removed reference and constness.
template<class Domain, class Range>
Raw type of input variable with removed reference and constness.
Member Function Documentation
template<class Domain, class Range>
void Dune::Function< Domain, Range >::evaluate |
( |
Domain |
x, |
|
|
Range |
y |
|
) |
| const |
The documentation for this class was generated from the following file: