#include <subvector.h>
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().
Public Member Functions | |
template<class Container> Subvector & | operator= (const Container &x) |
|
assign the elements of Container one by one to *this. Container must be at least as long as this. |