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

Definition at line 16185 of file exprtk.hpp.

Member Typedef Documentation

◆ Type

Definition at line 16187 of file exprtk.hpp.

Member Function Documentation

◆ process()

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

Definition at line 16192 of file exprtk.hpp.

16193 {
16194 switch (arg_list.size())
16195 {
16196 case 1 : return process_1(arg_list);
16197 case 2 : return process_2(arg_list);
16198 case 3 : return process_3(arg_list);
16199 case 4 : return process_4(arg_list);
16200 case 5 : return process_5(arg_list);
16201 default :
16202 {
16203 for (std::size_t i = 0; i < arg_list.size(); ++i)
16204 {
16205 if (std::not_equal_to<T>()(T(0), value(arg_list[i])))
16206 return T(1);
16207 }
16208
16209 return T(0);
16210 }
16211 }
16212 }
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:598
T value(details::expression_node< T > *n)
Definition exprtk.hpp:15749
static T process_4(const Sequence &arg_list)
Definition exprtk.hpp:16241
static T process_2(const Sequence &arg_list)
Definition exprtk.hpp:16222
static T process_5(const Sequence &arg_list)
Definition exprtk.hpp:16252
static T process_3(const Sequence &arg_list)
Definition exprtk.hpp:16231
static T process_1(const Sequence &arg_list)
Definition exprtk.hpp:16215

References exprtk::details::match_impl(), exprtk::details::vararg_mor_op< T >::process_1(), exprtk::details::vararg_mor_op< T >::process_2(), exprtk::details::vararg_mor_op< T >::process_3(), exprtk::details::vararg_mor_op< T >::process_4(), exprtk::details::vararg_mor_op< T >::process_5(), and exprtk::details::value().

Here is the call graph for this function:

◆ process_1()

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

Definition at line 16215 of file exprtk.hpp.

16216 {
16217 return std::not_equal_to<T>()
16218 (T(0), value(arg_list[0])) ? T(1) : T(0);
16219 }

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

Referenced by exprtk::details::vararg_mor_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_mor_op< T >::process_2 ( const Sequence arg_list)
inlinestatic

Definition at line 16222 of file exprtk.hpp.

16223 {
16224 return (
16225 std::not_equal_to<T>()(T(0), value(arg_list[0])) ||
16226 std::not_equal_to<T>()(T(0), value(arg_list[1]))
16227 ) ? T(1) : T(0);
16228 }

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

Referenced by exprtk::details::vararg_mor_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_mor_op< T >::process_3 ( const Sequence arg_list)
inlinestatic

Definition at line 16231 of file exprtk.hpp.

16232 {
16233 return (
16234 std::not_equal_to<T>()(T(0), value(arg_list[0])) ||
16235 std::not_equal_to<T>()(T(0), value(arg_list[1])) ||
16236 std::not_equal_to<T>()(T(0), value(arg_list[2]))
16237 ) ? T(1) : T(0);
16238 }

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

Referenced by exprtk::details::vararg_mor_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_mor_op< T >::process_4 ( const Sequence arg_list)
inlinestatic

Definition at line 16241 of file exprtk.hpp.

16242 {
16243 return (
16244 std::not_equal_to<T>()(T(0), value(arg_list[0])) ||
16245 std::not_equal_to<T>()(T(0), value(arg_list[1])) ||
16246 std::not_equal_to<T>()(T(0), value(arg_list[2])) ||
16247 std::not_equal_to<T>()(T(0), value(arg_list[3]))
16248 ) ? T(1) : T(0);
16249 }

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

Referenced by exprtk::details::vararg_mor_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_mor_op< T >::process_5 ( const Sequence arg_list)
inlinestatic

Definition at line 16252 of file exprtk.hpp.

16253 {
16254 return (
16255 std::not_equal_to<T>()(T(0), value(arg_list[0])) ||
16256 std::not_equal_to<T>()(T(0), value(arg_list[1])) ||
16257 std::not_equal_to<T>()(T(0), value(arg_list[2])) ||
16258 std::not_equal_to<T>()(T(0), value(arg_list[3])) ||
16259 std::not_equal_to<T>()(T(0), value(arg_list[4]))
16260 ) ? T(1) : T(0);
16261 }

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

Referenced by exprtk::details::vararg_mor_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: