ilyas
0
Q:

struct c overload

struct Point
{
	float x;
	float y;
    
	bool operator<(const Point& p) const
	{
		return (x < p.x && y < p.y);
	} 
};
0

New to Communities?

Join the community