Constructors and initialization |
| IntArgs (void) |
| Allocate empty array.
|
| IntArgs (int n) |
| Allocate array with n elements.
|
| IntArgs (const SharedArray< int > &x) |
| Allocate array and copy elements from x.
|
| IntArgs (const std::vector< int > &x) |
| Allocate array and copy elements from x.
|
template<class InputIterator > |
| IntArgs (InputIterator first, InputIterator last) |
| Allocate array and copy elements from first to last.
|
| IntArgs (int n, int e0,...) |
| Allocate array with n elements and initialize with e0, ...
|
| IntArgs (int n, const int *e) |
| Allocate array with n elements and initialize with elements from array e.
|
| IntArgs (const PrimArgArray< int > &a) |
| Initialize from primitive argument array a (copy elements)
|
static IntArgs | create (int n, int start, int inc=1) |
| Allocate array with n elements such that for all .
|
Passing integer arguments.
Definition at line 605 of file int.hh.