Next: TinyVec ctors, Up: TinyVector [Contents][Index]
The TinyVector<T,N> class has two template parameters:
Tis the numeric type of the vector (float, double, int,
complex<float>, etc.;
Nis the number of elements in the vector.
Inside the TinyVector class, these types are declared:
T_numtypeis the numeric type stored in the vector (the template parameter T)
T_vectoris the vector type TinyVector<T,N>.
iteratoris an STL-style iterator.
constIteratoris an STL-style const iterator.