while going through some of the mili source code I came across a struct declared like this:
template <class T, class Pre, class Pos>
struct PrePosCaller<T*, Pre, Pos>
(from here)
The part I'm unfamiliar with is <T*, Pre, Pos>
. I understand what the code does and its purpose in this context but I would like to know where it is documented so I can learn/understand it a bit more.