function_8< D, S1, S2, S3, S4, S5, S6, S7, S8 > Struct Template Reference

#include <function.hpp>

List of all members.

Public Member Functions

Public Attributes


Detailed Description

template<typename D, typename S1, typename S2, typename S3, typename S4, typename S5, typename S6, typename S7, typename S8>
struct mmx::function_8< D, S1, S2, S3, S4, S5, S6, S7, S8 >

Definition at line 582 of file function.hpp.


Constructor & Destructor Documentation

function_8 (  )  [inline]

Definition at line 584 of file function.hpp.

00584 : rep (NULL) {}

function_8 ( function_8_rep< D, S1, S2, S3, S4, S5, S6, S7, S8 > *  rep2  )  [inline]

Definition at line 585 of file function.hpp.

00585 : rep (rep2) {}

function_8 ( function_8_rep< D, S1, S2, S3, S4, S5, S6, S7, S8 > *  rep2,
bool  with_inc 
) [inline]

Definition at line 586 of file function.hpp.

References INC_COUNT, and function_8< D, S1, S2, S3, S4, S5, S6, S7, S8 >::rep.

00587                                    :
00588     rep (rep2) { (void) with_inc; INC_COUNT (rep); }
  inline function_8 (const function_8& f):

function_8 ( const function_8< D, S1, S2, S3, S4, S5, S6, S7, S8 > &  f  )  [inline]

Definition at line 589 of file function.hpp.

References INC_NULL_COUNT, and function_8< D, S1, S2, S3, S4, S5, S6, S7, S8 >::rep.

00589                                          :
00590     rep (f.rep) { INC_NULL_COUNT(rep); }
  inline function_8 (D (*fun) (S1, S2, S3, S4, S5, S6, S7, S8)):

function_8 ( D(*)(S1, S2, S3, S4, S5, S6, S7, S8)  fun  )  [inline]

Definition at line 591 of file function.hpp.

00591                                                                :
00592     rep (new def_function_8_rep<D,S1,S2,S3,S4,S5,S6,S7,S8> (fun)) {}
  inline ~function_8 () { DEC_NULL_COUNT (rep); }

~function_8 (  )  [inline]

Member Function Documentation

D operator() ( S1  x1,
S2  x2,
S3  x3,
S4  x4,
S5  x5,
S6  x6,
S7  x7,
S8  x8 
) const [inline]

Definition at line 597 of file function.hpp.

References function_8< D, S1, S2, S3, S4, S5, S6, S7, S8 >::rep.

00597                                                                                       {
00598     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 594 of file function.hpp.

References DEC_NULL_COUNT, INC_NULL_COUNT, and function_8< D, S1, S2, S3, S4, S5, S6, S7, S8 >::rep.

00594                                                       {
00595     INC_NULL_COUNT (f.rep); DEC_NULL_COUNT (rep);
00596     rep= f.rep; return *this; }


Member Data Documentation

function_8_rep<D,S1,S2,S3,S4,S5,S6,S7,S8>* rep

The documentation for this struct was generated from the following file:

Generated on 6 Dec 2012 for basix by  doxygen 1.6.1