STK++ 1.0
STK_TOperator.h File Reference

Define the templated classes for handling binary and unary operators. More...

#include "../../STKernel/include/STK_Real.h"
Include dependency graph for STK_TOperator.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  STK::Plus
 Binary Operator Plus. More...
struct  STK::Minus
 Binary Operator Minus. More...
struct  STK::Mult
 Binary Operator Mult. More...
struct  STK::Div
 Binary Operator Div. More...
struct  STK::Uplus
 Unary Operator Plus. More...
struct  STK::Uminus
 Unary Operator Minus. More...

Namespaces

namespace  STK
 

STK means the Statistical ToolKit.


Functions

template<class ExpLeft , class ExpRight >
BinOp< Plus, ExpLeft, ExpRight > STK::operator+ (const ExpLeft &lhs, const ExpRight &rhs)
 Adding two Expressions.
template<class ExpLeft , class ExpRight >
BinOp< Minus, ExpLeft, ExpRight > STK::operator- (const ExpLeft &lhs, const ExpRight &rhs)
 soustracting A ExpRight to An Expression.
template<class ExpLeft , class ExpRight >
BinOp< Mult, ExpLeft, ExpRight > STK::operator* (const ExpLeft &lhs, const ExpRight &rhs)
 Mult A ExpRight to An Expression.
template<class ExpLeft , class ExpRight >
BinOp< Div, ExpLeft, ExpRight > STK::operator/ (const ExpLeft &lhs, const ExpRight &rhs)
 Div A ExpRight to An Expression.
template<class ExpRight >
UnOp< Uminus, ExpRight > STK::operator- (const ExpRight &rhs)
 Unary Minus Operator.
template<class ExpRight >
UnOp< Uplus, ExpRight > STK::operator+ (const ExpRight &rhs)
 Unary Plus Operator.

Detailed Description

Define the templated classes for handling binary and unary operators.

This file should not be include by other files.

Definition in file STK_TOperator.h.