Here is a class definition:
class intset{
int size;
int capacity;
int *data;
public:
-----------
};
******
Can you provide the constructor, copy constructor, copy assignment operator, destructor, move copy constructor, and move assignment operator on "------" ?
And override the ">>" on ******,