x<y> z

what does this syntax means....x<y> z...what is the purpose of "<" ">"...
thank you.
On a container class, it means that this container contains the data type/object inside the angle brackets.

For example a vector of integers.
1
2
3
#include <vector>

std::vector<int> v;    //v is a vector of integers 
Topic archived. No new replies allowed.