AFF --- A container for numbers (array) by Friederich and Forbriger.

◆ Tcoc

template<class T>
typedef Tbase aff::Array< T >::Tcoc

short for Tcontainer_of_const

We generally distinguish between constness of the array and constness of the contained data (see Notes on the const-correctness of arrays). There will be situations, when you want to promise that a function will not change the contents of an array. In this case you may use a declaration (prototype) like

typedef aff::Array<int> Tmyarray;
void myfunction(const Tmyarray::Tcoc& array);

and you may use this function like

Tmyarray A(6,7);
A=4;
myfunction(A);
See also
Notes on the const-correctness of arrays

Definition at line 395 of file array.h.