basix_doc 0.1
|
#include <function.hpp>
Definition at line 529 of file function.hpp.
function_8 | ( | ) | [inline] |
Definition at line 531 of file function.hpp.
: rep (NULL) {}
Definition at line 532 of file function.hpp.
: rep (rep2) {}
function_8 | ( | const function_8< D, S1, S2, S3, S4, S5, S6, S7, S8 > & | f | ) | [inline] |
Definition at line 533 of file function.hpp.
References INC_NULL_COUNT, and function_8< D, S1, S2, S3, S4, S5, S6, S7, S8 >::rep.
: rep (f.rep) { INC_NULL_COUNT(rep); }
Definition at line 535 of file function.hpp.
: rep (new def_function_8_rep<D,S1,S2,S3,S4,S5,S6,S7,S8> (fun)) {}
~function_8 | ( | ) | [inline] |
Definition at line 537 of file function.hpp.
References DEC_NULL_COUNT, and function_8< D, S1, S2, S3, S4, S5, S6, S7, S8 >::rep.
{ DEC_NULL_COUNT (rep); }
Definition at line 541 of file function.hpp.
References function_8< D, S1, S2, S3, S4, S5, S6, S7, S8 >::rep.
{ return rep->apply (x1, x2, x3, x4, x5, x6, x7, x8); }
function_8& operator= | ( | const function_8< D, S1, S2, S3, S4, S5, S6, S7, S8 > & | f | ) | [inline] |
Definition at line 538 of file function.hpp.
References DEC_NULL_COUNT, INC_NULL_COUNT, and function_8< D, S1, S2, S3, S4, S5, S6, S7, S8 >::rep.
{ INC_NULL_COUNT (f.rep); DEC_NULL_COUNT (rep); rep= f.rep; return *this; }
Definition at line 530 of file function.hpp.
Referenced by function_8< D, S1, S2, S3, S4, S5, S6, S7, S8 >::function_8(), function_8< D, S1, S2, S3, S4, S5, S6, S7, S8 >::operator()(), function_8< D, S1, S2, S3, S4, S5, S6, S7, S8 >::operator=(), and function_8< D, S1, S2, S3, S4, S5, S6, S7, S8 >::~function_8().