basix_doc 0.1
|
#include <function.hpp>
Definition at line 269 of file function.hpp.
function_3 | ( | ) | [inline] |
Definition at line 271 of file function.hpp.
: rep (NULL) {}
function_3 | ( | function_3_rep< D, S1, S2, S3 > * | rep2 | ) | [inline] |
Definition at line 272 of file function.hpp.
: rep (rep2) {}
function_3 | ( | const function_3< D, S1, S2, S3 > & | f | ) | [inline] |
Definition at line 273 of file function.hpp.
References INC_NULL_COUNT, and function_3< D, S1, S2, S3 >::rep.
: rep (f.rep) { INC_NULL_COUNT(rep); }
function_3 | ( | D(*)(S1, S2, S3) | fun | ) | [inline] |
Definition at line 275 of file function.hpp.
: rep (new def_function_3_rep<D,S1,S2,S3> (fun)) {}
~function_3 | ( | ) | [inline] |
Definition at line 277 of file function.hpp.
References DEC_NULL_COUNT, and function_3< D, S1, S2, S3 >::rep.
{ DEC_NULL_COUNT (rep); }
Definition at line 281 of file function.hpp.
References function_3< D, S1, S2, S3 >::rep.
{ return rep->apply (x1, x2, x3); }
function_3& operator= | ( | const function_3< D, S1, S2, S3 > & | f | ) | [inline] |
Definition at line 278 of file function.hpp.
References DEC_NULL_COUNT, INC_NULL_COUNT, and function_3< D, S1, S2, S3 >::rep.
{ INC_NULL_COUNT (f.rep); DEC_NULL_COUNT (rep); rep= f.rep; return *this; }
Definition at line 270 of file function.hpp.
Referenced by function_3< D, S1, S2, S3 >::function_3(), function_3< D, S1, S2, S3 >::operator()(), function_3< D, S1, S2, S3 >::operator=(), and function_3< D, S1, S2, S3 >::~function_3().