C++ Mathematical Expression Toolkit (ExprTk) release
Loading...
Searching...
No Matches
Public Types | Static Public Member Functions | List of all members
exprtk::details::or_op< T > Struct Template Reference
Inheritance diagram for exprtk::details::or_op< T >:
[legend]
Collaboration diagram for exprtk::details::or_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 (Type t1, Type t2)
 
static expression_node< T >::node_type type ()
 
static details::operator_type operation ()
 

Detailed Description

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

Definition at line 15662 of file exprtk.hpp.

Member Typedef Documentation

◆ Type

template<typename T >
typedef opr_base<T>::Type exprtk::details::or_op< T >::Type

Definition at line 15664 of file exprtk.hpp.

Member Function Documentation

◆ operation()

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

Definition at line 15668 of file exprtk.hpp.

15668{ return details::e_or; }

References exprtk::details::e_or.

◆ process()

template<typename T >
static T exprtk::details::or_op< T >::process ( Type  t1,
Type  t2 
)
inlinestatic

Definition at line 15666 of file exprtk.hpp.

15666{ return (details::is_true(t1) || details::is_true(t2)) ? T(1) : T(0); }
bool is_true(const double v)
Definition exprtk.hpp:5615
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::is_true(), and exprtk::details::match_impl().

Here is the call graph for this function:

◆ type()

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

Definition at line 15667 of file exprtk.hpp.


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