template<class C, class R=std::vector<C> > struct Seq;
where
C
is the type of elements stored in the sequence.R
is the internal representation. The default is std::vector<C>
.Seq<double> s("3.1 3.2"); s.push_back(3.3); s[1]; //yield 3.2 Seq<double> t = s,s; //concatenation of the sequence
synaps/base/Seq.h