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

static T process (const T &t0, const T &t1, const T &t2)
 
static T process (const std::string &t0, const std::string &t1, const std::string &t2)
 
static expression_node< T >::node_type type ()
 
static details::operator_type operation ()
 

Detailed Description

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

Definition at line 15735 of file exprtk.hpp.

Member Typedef Documentation

◆ Type

Definition at line 15737 of file exprtk.hpp.

Member Function Documentation

◆ operation()

template<typename T >
static details::operator_type exprtk::details::inrange_op< T >::operation ( )
inlinestatic

Definition at line 15745 of file exprtk.hpp.

15745{ return details::e_inrange; }

References exprtk::details::e_inrange.

◆ process() [1/2]

template<typename T >
static T exprtk::details::inrange_op< T >::process ( const std::string &  t0,
const std::string &  t1,
const std::string &  t2 
)
inlinestatic

Definition at line 15740 of file exprtk.hpp.

15741 {
15742 return ((t0 <= t1) && (t1 <= t2)) ? T(1) : T(0);
15743 }
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:

◆ process() [2/2]

template<typename T >
static T exprtk::details::inrange_op< T >::process ( const T t0,
const T t1,
const T t2 
)
inlinestatic

Definition at line 15739 of file exprtk.hpp.

15739{ return ((t0 <= t1) && (t1 <= t2)) ? T(1) : T(0); }

References exprtk::details::match_impl().

Here is the call graph for this function:

◆ type()

template<typename T >
static expression_node< T >::node_type exprtk::details::inrange_op< T >::type ( )
inlinestatic

Definition at line 15744 of file exprtk.hpp.


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