C++ Mathematical Expression Toolkit (ExprTk) release
Loading...
Searching...
No Matches
Public Member Functions | List of all members
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)
 
- 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 3696 of file exprtk_mpfr_test.cpp.

Constructor & Destructor Documentation

◆ myfunc() [1/4]

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

Definition at line 3700 of file exprtk_mpfr_test.cpp.

◆ myfunc() [2/4]

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

Definition at line 3701 of file exprtk_real_test.cpp.

◆ myfunc() [3/4]

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:18838

References exprtk::disable_has_side_effects().

Here is the call graph for this function:

◆ myfunc() [4/4]

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

Definition at line 3720 of file exprtk_test.cpp.

Member Function Documentation

◆ operator()() [1/4]

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

Reimplemented from exprtk::ifunction< T >.

Definition at line 3702 of file exprtk_mpfr_test.cpp.

3703 {
3704 return T(1) + (v1 * v2) / T(3);
3705 }

◆ operator()() [2/4]

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

Reimplemented from exprtk::ifunction< T >.

Definition at line 3703 of file exprtk_real_test.cpp.

3704 {
3705 return T(1) + (v1 * v2) / T(3);
3706 }

◆ operator()() [3/4]

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/4]

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_test.cpp.

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

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