Go to the source code of this file.
|
| | JMATH |
| | Auxiliary classes and methods for mathematical operations.
|
| |
| | JPP |
| |
|
| template<class T > |
| const JCalculator< T, 1 > & | JMATH::operator* (const T &first, const T &second) |
| | Product evaluation of objects. More...
|
| |
| template<class T , int N> |
| const JCalculator< T, N+1 > & | JMATH::operator* (const T &first, const JCalculator< T, N > &second) |
| | Recursive product evaluation of objects. More...
|
| |
| template<class T , int N> |
| const JCalculator< T, N+1 > & | JMATH::operator* (const JCalculator< T, N > &first, const T &second) |
| | Recursive product evaluation of objects. More...
|
| |