|
Jpp 20.0.0-rc.3
the software that should make you happy
|
void function More...
#include <JMathlib.hh>
Public Member Functions | |
| template<class ... Args> | |
| make_carray (const Args &...args) | |
| Constructor. | |
| operator const double * () const | |
| Type conversion operator. | |
Private Member Functions | |
| template<class ... Args> | |
| void | add (const double x, const Args &...args) |
| Recursive method for adding values to array. | |
| void | add (const double x) |
| Termination method for adding values to array. | |
void function
Auxiliary data structure to make C-array from list of values.
Definition at line 30 of file JMathlib.hh.
|
inline |
Constructor.
| args | list of values |
Definition at line 39 of file JMathlib.hh.
|
inline |
Type conversion operator.
Definition at line 50 of file JMathlib.hh.
|
inlineprivate |
Recursive method for adding values to array.
| x | first value |
| args | remaining values |
Definition at line 63 of file JMathlib.hh.
|
inlineprivate |
Termination method for adding values to array.
| x | final value |
Definition at line 76 of file JMathlib.hh.