basix_doc 0.1
function_6< D, S1, S2, S3, S4, S5, S6 > 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>
struct mmx::function_6< D, S1, S2, S3, S4, S5, S6 >

Definition at line 425 of file function.hpp.


Constructor & Destructor Documentation

function_6 ( ) [inline]

Definition at line 427 of file function.hpp.

: rep (NULL) {}
function_6 ( function_6_rep< D, S1, S2, S3, S4, S5, S6 > *  rep2) [inline]

Definition at line 428 of file function.hpp.

: rep (rep2) {}
function_6 ( const function_6< D, S1, S2, S3, S4, S5, S6 > &  f) [inline]

Definition at line 429 of file function.hpp.

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

                                         :
    rep (f.rep) { INC_NULL_COUNT(rep); }
function_6 ( D(*)(S1, S2, S3, S4, S5, S6 fun) [inline]

Definition at line 431 of file function.hpp.

~function_6 ( ) [inline]

Member Function Documentation

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

Definition at line 437 of file function.hpp.

References function_6< D, S1, S2, S3, S4, S5, S6 >::rep.

                                                                        {
    return rep->apply (x1, x2, x3, x4, x5, x6); }
function_6& operator= ( const function_6< D, S1, S2, S3, S4, S5, S6 > &  f) [inline]

Definition at line 434 of file function.hpp.

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

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

Member Data Documentation


The documentation for this struct was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines