linbox
1
|
Dense subvectorThis class provides a statically sized subvector of a random access container (such as std::vector, deque). It does not work on sparse linbox vectors. It implements all of the types and methods of a std::vector except for those that invalidate iterators, i.e., those (potentially) involving vector resizing, such as push_back(), insert(), resize(). More...
#include <subvector.h>
Public Member Functions | |
template<class Container > | |
Subvector & | operator= (const Container &x) |
Dense subvector
This class provides a statically sized subvector of a random access container (such as std::vector, deque). It does not work on sparse linbox vectors. It implements all of the types and methods of a std::vector except for those that invalidate iterators, i.e., those (potentially) involving vector resizing, such as push_back(), insert(), resize().
Subvector& operator= | ( | const Container & | x | ) | [inline] |
assign the elements of Container one by one to *this. Container must be at least as long as this.