C++ Mathematical Expression Toolkit (ExprTk) release
Loading...
Searching...
No Matches
Static Public Member Functions | List of all members
exprtk::details::T0oT1oT20T3process< T >::mode2 Struct Reference

#include <exprtk.hpp>

Static Public Member Functions

static T process (const T &t0, const T &t1, const T &t2, const T &t3, const bfunc_t bf0, const bfunc_t bf1, const bfunc_t bf2)
 
template<typename T0 , typename T1 , typename T2 , typename T3 >
static std::string id ()
 

Detailed Description

template<typename T>
struct exprtk::details::T0oT1oT20T3process< T >::mode2

Definition at line 17090 of file exprtk.hpp.

Member Function Documentation

◆ id()

template<typename T >
template<typename T0 , typename T1 , typename T2 , typename T3 >
static std::string exprtk::details::T0oT1oT20T3process< T >::mode2::id ( )
inlinestatic

Definition at line 17101 of file exprtk.hpp.

17102 {
17103 static const std::string result = "(" + exprtk_crtype(T0) + ")o((" +
17104 exprtk_crtype(T1) + "o" +
17105 exprtk_crtype(T2) + ")o(" +
17106 exprtk_crtype(T3) + "))" ;
17107 return result;
17108 }
#define exprtk_crtype(Type)
Definition exprtk.hpp:16997

References exprtk_crtype.

◆ process()

template<typename T >
static T exprtk::details::T0oT1oT20T3process< T >::mode2::process ( const T t0,
const T t1,
const T t2,
const T t3,
const bfunc_t  bf0,
const bfunc_t  bf1,
const bfunc_t  bf2 
)
inlinestatic

Definition at line 17092 of file exprtk.hpp.

17095 {
17096 // (T0 o0 ((T1 o1 T2) o2 T3)
17097 return bf0(t0,bf2(bf1(t1,t2),t3));
17098 }
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

References exprtk::details::match_impl().

Here is the call graph for this function:

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