Base class template for function classes.
More...
#include <dune/common/function.hh>
|
typedef RawRangeType | RangeType |
| Raw type of input variable with removed reference and constness. More...
|
|
typedef RawDomainType | DomainType |
| Raw type of output variable with removed reference and constness. More...
|
|
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. |
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.
template<class Domain, class Range>
void Dune::Function< Domain, Range >::evaluate |
( |
Domain |
x, |
|
|
Range |
y |
|
) |
| const |
Function evaluation.
- Parameters
-
x | Argument for function evaluation. |
y | Result of function evaluation. |
The documentation for this class was generated from the following file: