@@ -182,21 +182,51 @@ public:
182
182
static const partial_ordering unordered;
183
183
184
184
// 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
-
195
185
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator ==(partial_ordering, partial_ordering) noexcept = default ;
196
186
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
+ }
199
222
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
+ }
200
230
private:
201
231
_ValueT __value_;
202
232
};
@@ -206,53 +236,6 @@ _LIBCPP_INLINE_VAR constexpr partial_ordering partial_ordering::equivalent(_EqRe
206
236
_LIBCPP_INLINE_VAR constexpr partial_ordering partial_ordering::greater (_OrdResult::__greater);
207
237
_LIBCPP_INLINE_VAR constexpr partial_ordering partial_ordering::unordered (_NCmpResult ::__unordered);
208
238
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
-
256
239
class weak_ordering {
257
240
using _ValueT = signed char ;
258
241
@@ -273,20 +256,51 @@ public:
273
256
}
274
257
275
258
// 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
-
286
259
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator ==(weak_ordering, weak_ordering) noexcept = default ;
287
260
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
+ }
290
304
291
305
private:
292
306
_ValueT __value_;
@@ -295,52 +309,6 @@ private:
295
309
_LIBCPP_INLINE_VAR constexpr weak_ordering weak_ordering::less (_OrdResult::__less);
296
310
_LIBCPP_INLINE_VAR constexpr weak_ordering weak_ordering::equivalent (_EqResult::__equiv);
297
311
_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
- }
344
312
class strong_ordering {
345
313
using _ValueT = signed char ;
346
314
@@ -369,20 +337,51 @@ public:
369
337
}
370
338
371
339
// 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
-
382
340
_LIBCPP_INLINE_VISIBILITY friend constexpr bool operator ==(strong_ordering, strong_ordering) noexcept = default ;
383
341
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
+ }
386
385
387
386
private:
388
387
_ValueT __value_;
@@ -393,52 +392,6 @@ _LIBCPP_INLINE_VAR constexpr strong_ordering strong_ordering::equal(_EqResult::_
393
392
_LIBCPP_INLINE_VAR constexpr strong_ordering strong_ordering::equivalent (_EqResult::__equiv);
394
393
_LIBCPP_INLINE_VAR constexpr strong_ordering strong_ordering::greater (_OrdResult::__greater);
395
394
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
-
442
395
// named comparison functions
443
396
_LIBCPP_INLINE_VISIBILITY
444
397
constexpr bool is_lt (partial_ordering __cmp) noexcept { return __cmp < 0 ; }
0 commit comments