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

Public Types

typedef opr_base< T >::Type Type
 
typedef opr_base< T >::RefType RefType
 
- 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 T process (Type t1, Type t2, Type t3)
 
static void assign (RefType t1, Type t2)
 
static expression_node< T >::node_type type ()
 
static details::operator_type operation ()
 

Detailed Description

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

Definition at line 15503 of file exprtk.hpp.

Member Typedef Documentation

◆ RefType

template<typename T >
typedef opr_base<T>::RefType exprtk::details::mul_op< T >::RefType

Definition at line 15506 of file exprtk.hpp.

◆ Type

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

Definition at line 15505 of file exprtk.hpp.

Member Function Documentation

◆ assign()

template<typename T >
static void exprtk::details::mul_op< T >::assign ( RefType  t1,
Type  t2 
)
inlinestatic

Definition at line 15510 of file exprtk.hpp.

15510{ t1 *= t2; }

◆ operation()

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

Definition at line 15512 of file exprtk.hpp.

15512{ return details::e_mul; }

References exprtk::details::e_mul.

◆ process() [1/2]

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

Definition at line 15508 of file exprtk.hpp.

15508{ return t1 * t2; }

◆ process() [2/2]

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

Definition at line 15509 of file exprtk.hpp.

15509{ return t1 * t2 * t3; }

◆ type()

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

Definition at line 15511 of file exprtk.hpp.


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