|
| | ArgArray (void) |
| | Allocate empty array. More...
|
| |
| | ArgArray (int n) |
| | Allocate array with n elements. More...
|
| |
| | ArgArray (int n, const FloatVal *e) |
| | Allocate array with n elements and initialize with elements from array e. More...
|
| |
| | ArgArray (const ArgArray< FloatVal > &a) |
| | Initialize from argument array a (copy elements) More...
|
| |
| | ArgArray (const std::vector< FloatVal > &a) |
| | Initialize from vector a. More...
|
| |
| | ArgArray (std::initializer_list< FloatVal > a) |
| | Initialize from initializer list a. More...
|
| |
| | ArgArray (InputIterator first, InputIterator last) |
| | Initialize from InputIterator first and last. More...
|
| |
| ArrayTraits< ArgArray< FloatVal > >::ArgsType | slice (int start, int inc=1, int n=-1) |
| | Return slice of length n such that forall , . More...
|
| |
| ArrayTraits< ArgArray< FloatVal > >::ArgsType & | operator<< (const FloatVal &x) |
| | Insert a new element x at the end of the array (increase size by 1) More...
|
| |
| ArrayTraits< ArgArray< FloatVal > >::ArgsType & | operator<< (const ArgArray< FloatVal > &x) |
| | Append x to the end of the array. More...
|
| |
| ArrayTraits< ArgArray< FloatVal > >::ArgsType | operator+ (const ArgArray< FloatVal > &x, const ArgArray< FloatVal > &y) |
| |
| ArrayTraits< ArgArray< FloatVal > >::ArgsType | operator+ (const ArgArray< FloatVal > &x, const FloatVal &y) |
| |
| ArrayTraits< ArgArray< FloatVal > >::ArgsType | operator+ (const FloatVal &x, const ArgArray< FloatVal > &y) |
| |
| ArrayTraits< VarArgArray< Var > >::ArgsType | operator+ (const VarArgArray< Var > &x, const VarArgArray< Var > &y) |
| |
| ArrayTraits< VarArgArray< Var > >::ArgsType | operator+ (const VarArgArray< Var > &x, const Var &y) |
| |
| ArrayTraits< VarArgArray< Var > >::ArgsType | operator+ (const Var &x, const VarArgArray< Var > &y) |
| |
Passing float arguments.
Definition at line 950 of file float.hh.