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

#include <exprtk.hpp>

Static Public Member Functions

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

Detailed Description

template<typename T>
struct exprtk::details::T0oT1oT2process< T >::mode0

Definition at line 16324 of file exprtk.hpp.

Member Function Documentation

◆ id()

template<typename T >
template<typename T0 , typename T1 , typename T2 >
static std::string exprtk::details::T0oT1oT2process< T >::mode0::id ( )
inlinestatic

Definition at line 16333 of file exprtk.hpp.

16334 {
16335 static const std::string result = "(" + exprtk_crtype(T0) + "o" +
16336 exprtk_crtype(T1) + ")o(" +
16337 exprtk_crtype(T2) + ")" ;
16338 return result;
16339 }
#define exprtk_crtype(Type)
Definition exprtk.hpp:16315

References exprtk_crtype.

◆ process()

template<typename T >
static T exprtk::details::T0oT1oT2process< T >::mode0::process ( const T t0,
const T t1,
const T t2,
const bfunc_t  bf0,
const bfunc_t  bf1 
)
inlinestatic

Definition at line 16326 of file exprtk.hpp.

16327 {
16328 // (T0 o0 T1) o1 T2
16329 return bf1(bf0(t0,t1),t2);
16330 }
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:591

References exprtk::details::match_impl().

Here is the call graph for this function:

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