C++ Mathematical Expression Toolkit (ExprTk) release
Loading...
Searching...
No Matches
myfunc< T > Struct Template Reference
Inheritance diagram for myfunc< T >:
[legend]
Collaboration diagram for myfunc< T >:
[legend]

Public Member Functions

 myfunc ()
operator() (const T &v1, const T &v2)
 myfunc ()
operator() (const T &v1, const T &v2)
 myfunc ()
operator() (const T &v1, const T &v2)
 myfunc ()
operator() (const T &v1, const T &v2) override
 myfunc ()
operator() (const T &v1, const T &v2)
Public Member Functions inherited from exprtk::ifunction< T >
 ifunction (const std::size_t &pc)
virtual ~ifunction ()
virtual T operator() ()
virtual T operator() (const T &)
virtual T operator() (const T &, const T &, const T &)
virtual T operator() (const T &, const T &, const T &, const T &)
virtual T operator() (const T &, const T &, const T &, const T &, const T &)
virtual T operator() (const T &, const T &, const T &, const T &, const T &, const T &)
virtual T operator() (const T &, const T &, const T &, const T &, const T &, const T &, const T &)
virtual T operator() (const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &)
virtual T operator() (const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &)
virtual T operator() (const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &)
virtual T operator() (const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &)
virtual T operator() (const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &)
virtual T operator() (const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &)
virtual T operator() (const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &)
virtual T operator() (const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &)
virtual T operator() (const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &)
virtual T operator() (const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &)
virtual T operator() (const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &)
virtual T operator() (const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &)
virtual T operator() (const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &, const T &)
Public Member Functions inherited from exprtk::function_traits
 function_traits ()
bool & allow_zero_parameters ()
bool & has_side_effects ()
std::size_t & min_num_args ()
std::size_t & max_num_args ()

Additional Inherited Members

Public Attributes inherited from exprtk::ifunction< T >
std::size_t param_count

Detailed Description

template<typename T>
struct myfunc< T >

Definition at line 3716 of file exprtk_mpfr_test.cpp.

Constructor & Destructor Documentation

◆ myfunc() [1/5]

template<typename T>
myfunc< T >::myfunc ( )
inline

Definition at line 3720 of file exprtk_mpfr_test.cpp.

References exprtk::ifunction< T >::ifunction().

Here is the call graph for this function:

◆ myfunc() [2/5]

template<typename T>
myfunc< T >::myfunc ( )
inline

Definition at line 3719 of file exprtk_real_test.cpp.

References exprtk::ifunction< T >::ifunction().

Here is the call graph for this function:

◆ myfunc() [3/5]

template<typename T>
myfunc< T >::myfunc ( )
inline

Definition at line 31 of file exprtk_simple_example_05.cpp.

void disable_has_side_effects(FunctionType &func)
Definition exprtk.hpp:19839

References exprtk::disable_has_side_effects(), and exprtk::ifunction< T >::ifunction().

Here is the call graph for this function:

◆ myfunc() [4/5]

template<typename T>
myfunc< T >::myfunc ( )
inline

Definition at line 31 of file exprtk_symtab_functions.cpp.

References exprtk::disable_has_side_effects(), and exprtk::ifunction< T >::ifunction().

Here is the call graph for this function:

◆ myfunc() [5/5]

template<typename T>
myfunc< T >::myfunc ( )
inline

Definition at line 3739 of file exprtk_test.cpp.

References exprtk::ifunction< T >::ifunction().

Here is the call graph for this function:

Member Function Documentation

◆ operator()() [1/5]

template<typename T>
T myfunc< T >::operator() ( const T & v1,
const T & v2 )
inlinevirtual

Reimplemented from exprtk::ifunction< T >.

Definition at line 3722 of file exprtk_mpfr_test.cpp.

3723 {
3724 return T(1) + (v1 * v2) / T(3);
3725 }

◆ operator()() [2/5]

template<typename T>
T myfunc< T >::operator() ( const T & v1,
const T & v2 )
inlinevirtual

Reimplemented from exprtk::ifunction< T >.

Definition at line 3721 of file exprtk_real_test.cpp.

3722 {
3723 return T(1) + (v1 * v2) / T(3);
3724 }

◆ operator()() [3/5]

template<typename T>
T myfunc< T >::operator() ( const T & v1,
const T & v2 )
inlinevirtual

Reimplemented from exprtk::ifunction< T >.

Definition at line 35 of file exprtk_simple_example_05.cpp.

36 {
37 return T(1) + (v1 * v2) / T(3);
38 }

◆ operator()() [4/5]

template<typename T>
T myfunc< T >::operator() ( const T & v1,
const T & v2 )
inlinevirtual

Reimplemented from exprtk::ifunction< T >.

Definition at line 3741 of file exprtk_test.cpp.

3742 {
3743 return T(1) + (v1 * v2) / T(3);
3744 }

◆ operator()() [5/5]

template<typename T>
T myfunc< T >::operator() ( const T & v1,
const T & v2 )
inlineoverridevirtual

Reimplemented from exprtk::ifunction< T >.

Definition at line 35 of file exprtk_symtab_functions.cpp.

36 {
37 return T(1) + (v1 * v2) / T(3);
38 }

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