------------------------------ Comparison operators ------------------------------ // * Less comparison operator. * @param point Point to be compared. * @result Whether the instance satisfies the condition with respect to point. */
| 70 | * @result Whether the instance satisfies the condition with respect to point. |
| 71 | */ |
| 72 | inline bool operator<(const Point<T>& point) const |
| 73 | { |
| 74 | return area() < point.area(); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Greater comparison operator. |