8 template <
class T,
class Allocator = std::allocator<T>>
10 :
public std::vector<T,Allocator>
13 using std::vector<T,Allocator>::vector;
18 this->assign(this->size(), s);
Flat data vector to be used in assembling as element vector.
Definition: FlatVector.hpp:11
FlatVector & operator=(T s)
Assign value s to all entries of the vector.
Definition: FlatVector.hpp:16