|
CppAD: A C++ Algorithmic Differentiation Package 20110419
|
Public Types | |
| typedef Type | value_type |
Public Member Functions | |
| vector (void) | |
| vector (size_t n) | |
| vector (const vector &x) | |
| ~vector (void) | |
| size_t | size (void) const |
| void | resize (size_t n) |
| vector & | operator= (const vector &x) |
| Type & | operator[] (size_t i) |
| const Type & | operator[] (size_t i) const |
| void | push_back (const Type &s) |
| template<class Vector > | |
| void | push_vector (const Vector &v) |
Private Attributes | |
| size_t | capacity |
| size_t | length |
| Type * | data |
Definition at line 248 of file vector.hpp.