Skip to content

Commit 9eb0969

Browse files
committed
[libcxx] makes comparison operators for std::*_ordering types hidden friends
The standard leaves it up to the implementation to decide whether or not these operators are hidden friends. There are several (well-documented) reasons to prefer hidden friends, as well as an argument for improved readability. Depends on D100342. Differential Revision: https://reviews.llvm.org/D101707
1 parent 20506fb commit 9eb0969

File tree

1 file changed

+128
-175
lines changed

1 file changed

+128
-175
lines changed

libcxx/include/compare

+128-175
Original file line numberDiff line numberDiff line change
@@ -182,21 +182,51 @@ public:
182182
static const partial_ordering unordered;
183183

184184
// comparisons
185-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator==(partial_ordering __v, _CmpUnspecifiedParam) noexcept;
186-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator< (partial_ordering __v, _CmpUnspecifiedParam) noexcept;
187-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator<=(partial_ordering __v, _CmpUnspecifiedParam) noexcept;
188-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator> (partial_ordering __v, _CmpUnspecifiedParam) noexcept;
189-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator>=(partial_ordering __v, _CmpUnspecifiedParam) noexcept;
190-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator< (_CmpUnspecifiedParam, partial_ordering __v) noexcept;
191-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator<=(_CmpUnspecifiedParam, partial_ordering __v) noexcept;
192-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator> (_CmpUnspecifiedParam, partial_ordering __v) noexcept;
193-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator>=(_CmpUnspecifiedParam, partial_ordering __v) noexcept;
194-
195185
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator==(partial_ordering, partial_ordering) noexcept = default;
196186

197-
_LIBCPP_INLINE_VISIBILITY friend constexpr partial_ordering operator<=>(partial_ordering __v, _CmpUnspecifiedParam) noexcept;
198-
_LIBCPP_INLINE_VISIBILITY friend constexpr partial_ordering operator<=>(_CmpUnspecifiedParam, partial_ordering __v) noexcept;
187+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator==(partial_ordering __v, _CmpUnspecifiedParam) noexcept {
188+
return __v.__is_ordered() && __v.__value_ == 0;
189+
}
190+
191+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator< (partial_ordering __v, _CmpUnspecifiedParam) noexcept {
192+
return __v.__is_ordered() && __v.__value_ < 0;
193+
}
194+
195+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator<=(partial_ordering __v, _CmpUnspecifiedParam) noexcept {
196+
return __v.__is_ordered() && __v.__value_ <= 0;
197+
}
198+
199+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator> (partial_ordering __v, _CmpUnspecifiedParam) noexcept {
200+
return __v.__is_ordered() && __v.__value_ > 0;
201+
}
202+
203+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator>=(partial_ordering __v, _CmpUnspecifiedParam) noexcept {
204+
return __v.__is_ordered() && __v.__value_ >= 0;
205+
}
206+
207+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator< (_CmpUnspecifiedParam, partial_ordering __v) noexcept {
208+
return __v.__is_ordered() && 0 < __v.__value_;
209+
}
210+
211+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator<=(_CmpUnspecifiedParam, partial_ordering __v) noexcept {
212+
return __v.__is_ordered() && 0 <= __v.__value_;
213+
}
214+
215+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator> (_CmpUnspecifiedParam, partial_ordering __v) noexcept {
216+
return __v.__is_ordered() && 0 > __v.__value_;
217+
}
218+
219+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator>=(_CmpUnspecifiedParam, partial_ordering __v) noexcept {
220+
return __v.__is_ordered() && 0 >= __v.__value_;
221+
}
199222

223+
_LIBCPP_INLINE_VISIBILITY friend constexpr partial_ordering operator<=>(partial_ordering __v, _CmpUnspecifiedParam) noexcept {
224+
return __v;
225+
}
226+
227+
_LIBCPP_INLINE_VISIBILITY friend constexpr partial_ordering operator<=>(_CmpUnspecifiedParam, partial_ordering __v) noexcept {
228+
return __v < 0 ? partial_ordering::greater : (__v > 0 ? partial_ordering::less : __v);
229+
}
200230
private:
201231
_ValueT __value_;
202232
};
@@ -206,53 +236,6 @@ _LIBCPP_INLINE_VAR constexpr partial_ordering partial_ordering::equivalent(_EqRe
206236
_LIBCPP_INLINE_VAR constexpr partial_ordering partial_ordering::greater(_OrdResult::__greater);
207237
_LIBCPP_INLINE_VAR constexpr partial_ordering partial_ordering::unordered(_NCmpResult ::__unordered);
208238

209-
_LIBCPP_INLINE_VISIBILITY
210-
constexpr bool operator==(partial_ordering __v, _CmpUnspecifiedParam) noexcept {
211-
return __v.__is_ordered() && __v.__value_ == 0;
212-
}
213-
_LIBCPP_INLINE_VISIBILITY
214-
constexpr bool operator< (partial_ordering __v, _CmpUnspecifiedParam) noexcept {
215-
return __v.__is_ordered() && __v.__value_ < 0;
216-
}
217-
_LIBCPP_INLINE_VISIBILITY
218-
constexpr bool operator<=(partial_ordering __v, _CmpUnspecifiedParam) noexcept {
219-
return __v.__is_ordered() && __v.__value_ <= 0;
220-
}
221-
_LIBCPP_INLINE_VISIBILITY
222-
constexpr bool operator> (partial_ordering __v, _CmpUnspecifiedParam) noexcept {
223-
return __v.__is_ordered() && __v.__value_ > 0;
224-
}
225-
_LIBCPP_INLINE_VISIBILITY
226-
constexpr bool operator>=(partial_ordering __v, _CmpUnspecifiedParam) noexcept {
227-
return __v.__is_ordered() && __v.__value_ >= 0;
228-
}
229-
230-
_LIBCPP_INLINE_VISIBILITY
231-
constexpr bool operator< (_CmpUnspecifiedParam, partial_ordering __v) noexcept {
232-
return __v.__is_ordered() && 0 < __v.__value_;
233-
}
234-
_LIBCPP_INLINE_VISIBILITY
235-
constexpr bool operator<=(_CmpUnspecifiedParam, partial_ordering __v) noexcept {
236-
return __v.__is_ordered() && 0 <= __v.__value_;
237-
}
238-
_LIBCPP_INLINE_VISIBILITY
239-
constexpr bool operator> (_CmpUnspecifiedParam, partial_ordering __v) noexcept {
240-
return __v.__is_ordered() && 0 > __v.__value_;
241-
}
242-
_LIBCPP_INLINE_VISIBILITY
243-
constexpr bool operator>=(_CmpUnspecifiedParam, partial_ordering __v) noexcept {
244-
return __v.__is_ordered() && 0 >= __v.__value_;
245-
}
246-
247-
_LIBCPP_INLINE_VISIBILITY
248-
constexpr partial_ordering operator<=>(partial_ordering __v, _CmpUnspecifiedParam) noexcept {
249-
return __v;
250-
}
251-
_LIBCPP_INLINE_VISIBILITY
252-
constexpr partial_ordering operator<=>(_CmpUnspecifiedParam, partial_ordering __v) noexcept {
253-
return __v < 0 ? partial_ordering::greater : (__v > 0 ? partial_ordering::less : __v);
254-
}
255-
256239
class weak_ordering {
257240
using _ValueT = signed char;
258241

@@ -273,20 +256,51 @@ public:
273256
}
274257

275258
// comparisons
276-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator==(weak_ordering __v, _CmpUnspecifiedParam) noexcept;
277-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator< (weak_ordering __v, _CmpUnspecifiedParam) noexcept;
278-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator<=(weak_ordering __v, _CmpUnspecifiedParam) noexcept;
279-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator> (weak_ordering __v, _CmpUnspecifiedParam) noexcept;
280-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator>=(weak_ordering __v, _CmpUnspecifiedParam) noexcept;
281-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator< (_CmpUnspecifiedParam, weak_ordering __v) noexcept;
282-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator<=(_CmpUnspecifiedParam, weak_ordering __v) noexcept;
283-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator> (_CmpUnspecifiedParam, weak_ordering __v) noexcept;
284-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator>=(_CmpUnspecifiedParam, weak_ordering __v) noexcept;
285-
286259
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator==(weak_ordering, weak_ordering) noexcept = default;
287260

288-
_LIBCPP_INLINE_VISIBILITY friend constexpr weak_ordering operator<=>(weak_ordering __v, _CmpUnspecifiedParam) noexcept;
289-
_LIBCPP_INLINE_VISIBILITY friend constexpr weak_ordering operator<=>(_CmpUnspecifiedParam, weak_ordering __v) noexcept;
261+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator==(weak_ordering __v, _CmpUnspecifiedParam) noexcept {
262+
return __v.__value_ == 0;
263+
}
264+
265+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator< (weak_ordering __v, _CmpUnspecifiedParam) noexcept {
266+
return __v.__value_ < 0;
267+
}
268+
269+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator<=(weak_ordering __v, _CmpUnspecifiedParam) noexcept {
270+
return __v.__value_ <= 0;
271+
}
272+
273+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator> (weak_ordering __v, _CmpUnspecifiedParam) noexcept {
274+
return __v.__value_ > 0;
275+
}
276+
277+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator>=(weak_ordering __v, _CmpUnspecifiedParam) noexcept {
278+
return __v.__value_ >= 0;
279+
}
280+
281+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator< (_CmpUnspecifiedParam, weak_ordering __v) noexcept {
282+
return 0 < __v.__value_;
283+
}
284+
285+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator<=(_CmpUnspecifiedParam, weak_ordering __v) noexcept {
286+
return 0 <= __v.__value_;
287+
}
288+
289+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator> (_CmpUnspecifiedParam, weak_ordering __v) noexcept {
290+
return 0 > __v.__value_;
291+
}
292+
293+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator>=(_CmpUnspecifiedParam, weak_ordering __v) noexcept {
294+
return 0 >= __v.__value_;
295+
}
296+
297+
_LIBCPP_INLINE_VISIBILITY friend constexpr weak_ordering operator<=>(weak_ordering __v, _CmpUnspecifiedParam) noexcept {
298+
return __v;
299+
}
300+
301+
_LIBCPP_INLINE_VISIBILITY friend constexpr weak_ordering operator<=>(_CmpUnspecifiedParam, weak_ordering __v) noexcept {
302+
return __v < 0 ? weak_ordering::greater : (__v > 0 ? weak_ordering::less : __v);
303+
}
290304

291305
private:
292306
_ValueT __value_;
@@ -295,52 +309,6 @@ private:
295309
_LIBCPP_INLINE_VAR constexpr weak_ordering weak_ordering::less(_OrdResult::__less);
296310
_LIBCPP_INLINE_VAR constexpr weak_ordering weak_ordering::equivalent(_EqResult::__equiv);
297311
_LIBCPP_INLINE_VAR constexpr weak_ordering weak_ordering::greater(_OrdResult::__greater);
298-
299-
_LIBCPP_INLINE_VISIBILITY
300-
constexpr bool operator==(weak_ordering __v, _CmpUnspecifiedParam) noexcept {
301-
return __v.__value_ == 0;
302-
}
303-
_LIBCPP_INLINE_VISIBILITY
304-
constexpr bool operator< (weak_ordering __v, _CmpUnspecifiedParam) noexcept {
305-
return __v.__value_ < 0;
306-
}
307-
_LIBCPP_INLINE_VISIBILITY
308-
constexpr bool operator<=(weak_ordering __v, _CmpUnspecifiedParam) noexcept {
309-
return __v.__value_ <= 0;
310-
}
311-
_LIBCPP_INLINE_VISIBILITY
312-
constexpr bool operator> (weak_ordering __v, _CmpUnspecifiedParam) noexcept {
313-
return __v.__value_ > 0;
314-
}
315-
_LIBCPP_INLINE_VISIBILITY
316-
constexpr bool operator>=(weak_ordering __v, _CmpUnspecifiedParam) noexcept {
317-
return __v.__value_ >= 0;
318-
}
319-
_LIBCPP_INLINE_VISIBILITY
320-
constexpr bool operator< (_CmpUnspecifiedParam, weak_ordering __v) noexcept {
321-
return 0 < __v.__value_;
322-
}
323-
_LIBCPP_INLINE_VISIBILITY
324-
constexpr bool operator<=(_CmpUnspecifiedParam, weak_ordering __v) noexcept {
325-
return 0 <= __v.__value_;
326-
}
327-
_LIBCPP_INLINE_VISIBILITY
328-
constexpr bool operator> (_CmpUnspecifiedParam, weak_ordering __v) noexcept {
329-
return 0 > __v.__value_;
330-
}
331-
_LIBCPP_INLINE_VISIBILITY
332-
constexpr bool operator>=(_CmpUnspecifiedParam, weak_ordering __v) noexcept {
333-
return 0 >= __v.__value_;
334-
}
335-
336-
_LIBCPP_INLINE_VISIBILITY
337-
constexpr weak_ordering operator<=>(weak_ordering __v, _CmpUnspecifiedParam) noexcept {
338-
return __v;
339-
}
340-
_LIBCPP_INLINE_VISIBILITY
341-
constexpr weak_ordering operator<=>(_CmpUnspecifiedParam, weak_ordering __v) noexcept {
342-
return __v < 0 ? weak_ordering::greater : (__v > 0 ? weak_ordering::less : __v);
343-
}
344312
class strong_ordering {
345313
using _ValueT = signed char;
346314

@@ -369,20 +337,51 @@ public:
369337
}
370338

371339
// comparisons
372-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator==(strong_ordering __v, _CmpUnspecifiedParam) noexcept;
373-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator< (strong_ordering __v, _CmpUnspecifiedParam) noexcept;
374-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator<=(strong_ordering __v, _CmpUnspecifiedParam) noexcept;
375-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator> (strong_ordering __v, _CmpUnspecifiedParam) noexcept;
376-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator>=(strong_ordering __v, _CmpUnspecifiedParam) noexcept;
377-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator< (_CmpUnspecifiedParam, strong_ordering __v) noexcept;
378-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator<=(_CmpUnspecifiedParam, strong_ordering __v) noexcept;
379-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator> (_CmpUnspecifiedParam, strong_ordering __v) noexcept;
380-
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator>=(_CmpUnspecifiedParam, strong_ordering __v) noexcept;
381-
382340
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator==(strong_ordering, strong_ordering) noexcept = default;
383341

384-
_LIBCPP_INLINE_VISIBILITY friend constexpr strong_ordering operator<=>(strong_ordering __v, _CmpUnspecifiedParam) noexcept;
385-
_LIBCPP_INLINE_VISIBILITY friend constexpr strong_ordering operator<=>(_CmpUnspecifiedParam, strong_ordering __v) noexcept;
342+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator==(strong_ordering __v, _CmpUnspecifiedParam) noexcept {
343+
return __v.__value_ == 0;
344+
}
345+
346+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator< (strong_ordering __v, _CmpUnspecifiedParam) noexcept {
347+
return __v.__value_ < 0;
348+
}
349+
350+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator<=(strong_ordering __v, _CmpUnspecifiedParam) noexcept {
351+
return __v.__value_ <= 0;
352+
}
353+
354+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator> (strong_ordering __v, _CmpUnspecifiedParam) noexcept {
355+
return __v.__value_ > 0;
356+
}
357+
358+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator>=(strong_ordering __v, _CmpUnspecifiedParam) noexcept {
359+
return __v.__value_ >= 0;
360+
}
361+
362+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator< (_CmpUnspecifiedParam, strong_ordering __v) noexcept {
363+
return 0 < __v.__value_;
364+
}
365+
366+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator<=(_CmpUnspecifiedParam, strong_ordering __v) noexcept {
367+
return 0 <= __v.__value_;
368+
}
369+
370+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator> (_CmpUnspecifiedParam, strong_ordering __v) noexcept {
371+
return 0 > __v.__value_;
372+
}
373+
374+
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator>=(_CmpUnspecifiedParam, strong_ordering __v) noexcept {
375+
return 0 >= __v.__value_;
376+
}
377+
378+
_LIBCPP_INLINE_VISIBILITY friend constexpr strong_ordering operator<=>(strong_ordering __v, _CmpUnspecifiedParam) noexcept {
379+
return __v;
380+
}
381+
382+
_LIBCPP_INLINE_VISIBILITY friend constexpr strong_ordering operator<=>(_CmpUnspecifiedParam, strong_ordering __v) noexcept {
383+
return __v < 0 ? strong_ordering::greater : (__v > 0 ? strong_ordering::less : __v);
384+
}
386385

387386
private:
388387
_ValueT __value_;
@@ -393,52 +392,6 @@ _LIBCPP_INLINE_VAR constexpr strong_ordering strong_ordering::equal(_EqResult::_
393392
_LIBCPP_INLINE_VAR constexpr strong_ordering strong_ordering::equivalent(_EqResult::__equiv);
394393
_LIBCPP_INLINE_VAR constexpr strong_ordering strong_ordering::greater(_OrdResult::__greater);
395394

396-
_LIBCPP_INLINE_VISIBILITY
397-
constexpr bool operator==(strong_ordering __v, _CmpUnspecifiedParam) noexcept {
398-
return __v.__value_ == 0;
399-
}
400-
_LIBCPP_INLINE_VISIBILITY
401-
constexpr bool operator< (strong_ordering __v, _CmpUnspecifiedParam) noexcept {
402-
return __v.__value_ < 0;
403-
}
404-
_LIBCPP_INLINE_VISIBILITY
405-
constexpr bool operator<=(strong_ordering __v, _CmpUnspecifiedParam) noexcept {
406-
return __v.__value_ <= 0;
407-
}
408-
_LIBCPP_INLINE_VISIBILITY
409-
constexpr bool operator> (strong_ordering __v, _CmpUnspecifiedParam) noexcept {
410-
return __v.__value_ > 0;
411-
}
412-
_LIBCPP_INLINE_VISIBILITY
413-
constexpr bool operator>=(strong_ordering __v, _CmpUnspecifiedParam) noexcept {
414-
return __v.__value_ >= 0;
415-
}
416-
_LIBCPP_INLINE_VISIBILITY
417-
constexpr bool operator< (_CmpUnspecifiedParam, strong_ordering __v) noexcept {
418-
return 0 < __v.__value_;
419-
}
420-
_LIBCPP_INLINE_VISIBILITY
421-
constexpr bool operator<=(_CmpUnspecifiedParam, strong_ordering __v) noexcept {
422-
return 0 <= __v.__value_;
423-
}
424-
_LIBCPP_INLINE_VISIBILITY
425-
constexpr bool operator> (_CmpUnspecifiedParam, strong_ordering __v) noexcept {
426-
return 0 > __v.__value_;
427-
}
428-
_LIBCPP_INLINE_VISIBILITY
429-
constexpr bool operator>=(_CmpUnspecifiedParam, strong_ordering __v) noexcept {
430-
return 0 >= __v.__value_;
431-
}
432-
433-
_LIBCPP_INLINE_VISIBILITY
434-
constexpr strong_ordering operator<=>(strong_ordering __v, _CmpUnspecifiedParam) noexcept {
435-
return __v;
436-
}
437-
_LIBCPP_INLINE_VISIBILITY
438-
constexpr strong_ordering operator<=>(_CmpUnspecifiedParam, strong_ordering __v) noexcept {
439-
return __v < 0 ? strong_ordering::greater : (__v > 0 ? strong_ordering::less : __v);
440-
}
441-
442395
// named comparison functions
443396
_LIBCPP_INLINE_VISIBILITY
444397
constexpr bool is_lt(partial_ordering __cmp) noexcept { return __cmp < 0; }

0 commit comments

Comments
 (0)