|
| | IntArgs (void) |
| | Allocate empty array. More...
|
| |
| | IntArgs (int n) |
| | Allocate array with n elements. More...
|
| |
| | IntArgs (const SharedArray< int > &x) |
| | Allocate array and copy elements from x. More...
|
| |
| | IntArgs (const std::vector< int > &x) |
| | Allocate array and copy elements from x. More...
|
| |
| | IntArgs (std::initializer_list< int > x) |
| | Allocate array and copy elements from x. More...
|
| |
| template<class InputIterator > |
| | IntArgs (InputIterator first, InputIterator last) |
| | Allocate array and copy elements from first to last. More...
|
| |
| | IntArgs (int n, const int *e) |
| | Allocate array with n elements and initialize with elements from array e. More...
|
| |
| | IntArgs (const ArgArray< int > &a) |
| | Initialize from primitive argument array a (copy elements) More...
|
| |
| static IntArgs | create (int n, int start, int inc=1) |
| | Allocate array with n elements such that for all . More...
|
| |
|
| | ArgArray (void) |
| | Allocate empty array. More...
|
| |
| | ArgArray (int n) |
| | Allocate array with n elements. More...
|
| |
| | ArgArray (int n, const int *e) |
| | Allocate array with n elements and initialize with elements from array e. More...
|
| |
| | ArgArray (const ArgArray< int > &a) |
| | Initialize from argument array a (copy elements) More...
|
| |
| | ArgArray (const std::vector< int > &a) |
| | Initialize from vector a. More...
|
| |
| | ArgArray (std::initializer_list< int > a) |
| | Initialize from initializer list a. More...
|
| |
| | ArgArray (InputIterator first, InputIterator last) |
| | Initialize from InputIterator first and last. More...
|
| |
| ArrayTraits< ArgArray< int > >::ArgsType | slice (int start, int inc=1, int n=-1) |
| | Return slice of length n such that forall , . More...
|
| |
| ArrayTraits< ArgArray< int > >::ArgsType & | operator<< (const int &x) |
| | Insert a new element x at the end of the array (increase size by 1) More...
|
| |
| ArrayTraits< ArgArray< int > >::ArgsType & | operator<< (const ArgArray< int > &x) |
| | Append x to the end of the array. More...
|
| |
| ArrayTraits< ArgArray< int > >::ArgsType | operator+ (const ArgArray< int > &x, const ArgArray< int > &y) |
| |
| ArrayTraits< ArgArray< int > >::ArgsType | operator+ (const ArgArray< int > &x, const int &y) |
| |
| ArrayTraits< ArgArray< int > >::ArgsType | operator+ (const int &x, const ArgArray< int > &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 integer arguments.
Definition at line 628 of file int.hh.