C++ Mathematical Expression Toolkit (ExprTk) release
Loading...
Searching...
No Matches
Public Types | Static Public Member Functions | List of all members
exprtk::details::vararg_avg_op< T > Struct Template Reference
Inheritance diagram for exprtk::details::vararg_avg_op< T >:
[legend]
Collaboration diagram for exprtk::details::vararg_avg_op< T >:
[legend]

Public Types

typedef opr_base< T >::Type Type
 
- Public Types inherited from exprtk::details::opr_base< T >
typedef details::functor_t< T >::Type Type
 
typedef details::functor_t< T >::RefType RefType
 
typedef details::functor_t< Tfunctor_t
 
typedef functor_t::qfunc_t quaternary_functor_t
 
typedef functor_t::tfunc_t trinary_functor_t
 
typedef functor_t::bfunc_t binary_functor_t
 
typedef functor_t::ufunc_t unary_functor_t
 

Static Public Member Functions

template<typename Type , typename Allocator , template< typename, typename > class Sequence>
static T process (const Sequence< Type, Allocator > &arg_list)
 
template<typename Sequence >
static T process_1 (const Sequence &arg_list)
 
template<typename Sequence >
static T process_2 (const Sequence &arg_list)
 
template<typename Sequence >
static T process_3 (const Sequence &arg_list)
 
template<typename Sequence >
static T process_4 (const Sequence &arg_list)
 
template<typename Sequence >
static T process_5 (const Sequence &arg_list)
 

Detailed Description

template<typename T>
struct exprtk::details::vararg_avg_op< T >

Definition at line 16106 of file exprtk.hpp.

Member Typedef Documentation

◆ Type

Definition at line 16108 of file exprtk.hpp.

Member Function Documentation

◆ process()

template<typename T >
static T exprtk::details::vararg_avg_op< T >::process ( const Sequence< Type, Allocator > &  arg_list)
inlinestatic

Definition at line 16113 of file exprtk.hpp.

16114 {
16115 switch (arg_list.size())
16116 {
16117 case 0 : return T(0);
16118 case 1 : return process_1(arg_list);
16119 case 2 : return process_2(arg_list);
16120 case 3 : return process_3(arg_list);
16121 case 4 : return process_4(arg_list);
16122 case 5 : return process_5(arg_list);
16124 }
16125 }
bool match_impl(const Iterator pattern_begin, const Iterator pattern_end, const Iterator data_begin, const Iterator data_end, const typename std::iterator_traits< Iterator >::value_type &zero_or_more, const typename std::iterator_traits< Iterator >::value_type &exactly_one)
Definition exprtk.hpp:605
static T process(const Sequence< Type, Allocator > &arg_list)
Definition exprtk.hpp:15979
static T process_5(const Sequence &arg_list)
Definition exprtk.hpp:16153
static T process_1(const Sequence &arg_list)
Definition exprtk.hpp:16128
static T process_2(const Sequence &arg_list)
Definition exprtk.hpp:16134
static T process_3(const Sequence &arg_list)
Definition exprtk.hpp:16140
static T process_4(const Sequence &arg_list)
Definition exprtk.hpp:16146

References exprtk::details::match_impl(), exprtk::details::vararg_add_op< T >::process(), exprtk::details::vararg_avg_op< T >::process_1(), exprtk::details::vararg_avg_op< T >::process_2(), exprtk::details::vararg_avg_op< T >::process_3(), exprtk::details::vararg_avg_op< T >::process_4(), and exprtk::details::vararg_avg_op< T >::process_5().

Here is the call graph for this function:

◆ process_1()

template<typename T >
template<typename Sequence >
static T exprtk::details::vararg_avg_op< T >::process_1 ( const Sequence arg_list)
inlinestatic

Definition at line 16128 of file exprtk.hpp.

16129 {
16130 return value(arg_list[0]);
16131 }
T value(details::expression_node< T > *n)
Definition exprtk.hpp:15948

References exprtk::details::match_impl(), and exprtk::details::value().

Referenced by exprtk::details::vararg_avg_op< T >::process().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ process_2()

template<typename T >
template<typename Sequence >
static T exprtk::details::vararg_avg_op< T >::process_2 ( const Sequence arg_list)
inlinestatic

Definition at line 16134 of file exprtk.hpp.

16135 {
16136 return (value(arg_list[0]) + value(arg_list[1])) / T(2);
16137 }

References exprtk::details::match_impl(), and exprtk::details::value().

Referenced by exprtk::details::vararg_avg_op< T >::process().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ process_3()

template<typename T >
template<typename Sequence >
static T exprtk::details::vararg_avg_op< T >::process_3 ( const Sequence arg_list)
inlinestatic

Definition at line 16140 of file exprtk.hpp.

16141 {
16142 return (value(arg_list[0]) + value(arg_list[1]) + value(arg_list[2])) / T(3);
16143 }

References exprtk::details::match_impl(), and exprtk::details::value().

Referenced by exprtk::details::vararg_avg_op< T >::process().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ process_4()

template<typename T >
template<typename Sequence >
static T exprtk::details::vararg_avg_op< T >::process_4 ( const Sequence arg_list)
inlinestatic

Definition at line 16146 of file exprtk.hpp.

16147 {
16148 return (value(arg_list[0]) + value(arg_list[1]) +
16149 value(arg_list[2]) + value(arg_list[3])) / T(4);
16150 }

References exprtk::details::match_impl(), and exprtk::details::value().

Referenced by exprtk::details::vararg_avg_op< T >::process().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ process_5()

template<typename T >
template<typename Sequence >
static T exprtk::details::vararg_avg_op< T >::process_5 ( const Sequence arg_list)
inlinestatic

Definition at line 16153 of file exprtk.hpp.

16154 {
16155 return (value(arg_list[0]) + value(arg_list[1]) +
16156 value(arg_list[2]) + value(arg_list[3]) +
16157 value(arg_list[4])) / T(5);
16158 }

References exprtk::details::match_impl(), and exprtk::details::value().

Referenced by exprtk::details::vararg_avg_op< T >::process().

Here is the call graph for this function:
Here is the caller graph for this function:

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