Jpp
19.0.0
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. More... | |
operator const double * () const | |
Type conversion operator. More... | |
Private Member Functions | |
template<class... Args> | |
void | add (const double x, const Args &...args) |
Recursive method for adding values to array. More... | |
void | add (const double x) |
Termination method for adding values to array. More... | |
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.