basix_doc 0.1
|
#include <function.hpp>
Definition at line 477 of file function.hpp.
function_7 | ( | ) | [inline] |
Definition at line 479 of file function.hpp.
: rep (NULL) {}
Definition at line 480 of file function.hpp.
: rep (rep2) {}
function_7 | ( | const function_7< D, S1, S2, S3, S4, S5, S6, S7 > & | f | ) | [inline] |
Definition at line 481 of file function.hpp.
References INC_NULL_COUNT, and function_7< D, S1, S2, S3, S4, S5, S6, S7 >::rep.
: rep (f.rep) { INC_NULL_COUNT(rep); }
Definition at line 483 of file function.hpp.
: rep (new def_function_7_rep<D,S1,S2,S3,S4,S5,S6,S7> (fun)) {}
~function_7 | ( | ) | [inline] |
Definition at line 485 of file function.hpp.
References DEC_NULL_COUNT, and function_7< D, S1, S2, S3, S4, S5, S6, S7 >::rep.
{ DEC_NULL_COUNT (rep); }
Definition at line 489 of file function.hpp.
References function_7< D, S1, S2, S3, S4, S5, S6, S7 >::rep.
{ return rep->apply (x1, x2, x3, x4, x5, x6, x7); }
function_7& operator= | ( | const function_7< D, S1, S2, S3, S4, S5, S6, S7 > & | f | ) | [inline] |
Definition at line 486 of file function.hpp.
References DEC_NULL_COUNT, INC_NULL_COUNT, and function_7< D, S1, S2, S3, S4, S5, S6, S7 >::rep.
{ INC_NULL_COUNT (f.rep); DEC_NULL_COUNT (rep); rep= f.rep; return *this; }