|
| 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...
|
|
template<class InputIterator > |
| IntArgs (InputIterator first, InputIterator last) |
| Allocate array and copy elements from first to last. More...
|
|
| IntArgs (int n, int e0,...) |
| Allocate array with n elements and initialize with e0, ... More...
|
|
| IntArgs (int n, const int *e) |
| Allocate array with n elements and initialize with elements from array e. More...
|
|
| IntArgs (const PrimArgArray< 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...
|
|
|
| PrimArgArray (void) |
| Allocate empty array. More...
|
|
| PrimArgArray (int n) |
| Allocate array with n elements. More...
|
|
| PrimArgArray (int n, int e0,...) |
| Allocate array with n elements and initialize with e0, ... More...
|
|
| PrimArgArray (int n, const int *e) |
| Allocate array with n elements and initialize with elements from array e. More...
|
|
| PrimArgArray (const PrimArgArray< int > &a) |
| Initialize from primitive argument array a (copy elements) More...
|
|
| PrimArgArray (const std::vector< int > &a) |
| Initialize from vector a. More...
|
|
| PrimArgArray (InputIterator first, InputIterator last) |
| Initialize from InputIterator first and last. More...
|
|
ArrayTraits< PrimArgArray< int > >::ArgsType | slice (int start, int inc=1, int n=-1) |
|
ArrayTraits< PrimArgArray< int > >::ArgsType & | operator<< (const int &x) |
| Insert a new element x at the end of the array (increase size by 1) More...
|
|
ArrayTraits< PrimArgArray< int > >::ArgsType & | operator<< (const PrimArgArray< int > &x) |
| Append x to the end of the array. More...
|
|
ArrayTraits< PrimArgArray< int > >::ArgsType | operator+ (const PrimArgArray< int > &x, const PrimArgArray< int > &y) |
|
ArrayTraits< PrimArgArray< int > >::ArgsType | operator+ (const PrimArgArray< int > &x, const int &y) |
|
ArrayTraits< PrimArgArray< int > >::ArgsType | operator+ (const int &x, const PrimArgArray< int > &y) |
|
Passing integer arguments.
Definition at line 610 of file int.hh.