basix_doc 0.1
|
#include <function.hpp>
Definition at line 373 of file function.hpp.
function_5 | ( | ) | [inline] |
Definition at line 375 of file function.hpp.
: rep (NULL) {}
Definition at line 376 of file function.hpp.
: rep (rep2) {}
function_5 | ( | const function_5< D, S1, S2, S3, S4, S5 > & | f | ) | [inline] |
Definition at line 377 of file function.hpp.
References INC_NULL_COUNT, and function_5< D, S1, S2, S3, S4, S5 >::rep.
: rep (f.rep) { INC_NULL_COUNT(rep); }
Definition at line 379 of file function.hpp.
: rep (new def_function_5_rep<D,S1,S2,S3,S4,S5> (fun)) {}
~function_5 | ( | ) | [inline] |
Definition at line 381 of file function.hpp.
References DEC_NULL_COUNT, and function_5< D, S1, S2, S3, S4, S5 >::rep.
{ DEC_NULL_COUNT (rep); }
Definition at line 385 of file function.hpp.
References function_5< D, S1, S2, S3, S4, S5 >::rep.
{ return rep->apply (x1, x2, x3, x4, x5); }
function_5& operator= | ( | const function_5< D, S1, S2, S3, S4, S5 > & | f | ) | [inline] |
Definition at line 382 of file function.hpp.
References DEC_NULL_COUNT, INC_NULL_COUNT, and function_5< D, S1, S2, S3, S4, S5 >::rep.
{ INC_NULL_COUNT (f.rep); DEC_NULL_COUNT (rep); rep= f.rep; return *this; }
Definition at line 374 of file function.hpp.
Referenced by function_5< D, S1, S2, S3, S4, S5 >::function_5(), function_5< D, S1, S2, S3, S4, S5 >::operator()(), function_5< D, S1, S2, S3, S4, S5 >::operator=(), and function_5< D, S1, S2, S3, S4, S5 >::~function_5().