Member |
Where defined |
Comment |
size_type |
VectorExpression |
|
value_type |
VectorExpression |
|
const_reference |
VectorExpression |
Defined as value_type const &.
|
reference |
VectorCollection |
Defined as value_type&.
|
nnz_type |
SparseExpression |
|
mapped_vector() |
DefaultConstructible |
The vector's size after default-construction will be equal to 0.
|
mapped_vector(size_type) |
SizeConstructible |
|
mapped_vector(mapped_vector const&) |
Assignable,
Expression
|
Deep copies the elements
|
mapped_vector& operator=(mapped_vector const&) |
Assignable |
|
~mapped_vector() |
Expression |
|
bool operator==(mapped_vector const&) const |
EqualityComparable |
|
bool operator!=(mapped_vector const&) const |
EqualityComparable |
|
size_type size() const |
VectorExpression,
SizeConstructible
|
|
void resize(size_type)
| SizeConstructible |
|
const_reference operator[](size_type) const
| VectorExpression |
returns ZeroFunctor() if the index corrsponds to a structural zero |
const_reference operator()(size_type) const
| VectorExpression |
identical to operator[](size_type) const
|
reference operator[](size_type)
| VectorCollection |
Returns a proxy. If the proxy is being read, operator[](size_type)
behaves identical to its const-counterpart. If the proxy is being assigned to,
insert will be called.
|
reference operator()(size_type)
| VectorCollection |
identical to operator[](size_type)
|
nnz_type nnz() |
SparseExpression |
const_reference nz(nnz_type) const |
SparseExpression |
reference nz(nnz_type) |
SparseVectorCollection |
void insert(size_type,const_reference) |
SparseVector |
If the index already corresponds to a structural non-zero, DuplicateFunctor
will be used to determine what to do with the old value |