| http://www.w3.org/ns/prov#value | - ??? Template parameters are not restricted to one type (template<class Type>) there can also be ??? more than one parameter ??? integral constants (int, bool, char, ...) ??? pointer types and pointer to functions // Two type parameters template<class type1, class type2> ... // One type parameter, one integral parameter template<class T, int N> ... // Pointer to function parameter template<double
|