Searched defs:partial_ordering (Results 1 – 8 of 8) sorted by relevance
22 struct partial_ordering { struct23 double d;24 constexpr partial_ordering(double d) : d(d) {} in partial_ordering() argument25 constexpr partial_ordering(strong_ordering o) : d(o.n) {} in partial_ordering() function26 constexpr partial_ordering(weak_ordering o) : d(o.n) {} in partial_ordering() argument27 constexpr operator double() const { return d; } in operator double()28 static const partial_ordering less, equivalent, greater, unordered;
25 class partial_ordering { class27 constexpr partial_ordering(int n) : n(n) {} in partial_ordering() function in std::partial_ordering
34 class partial_ordering; variable53 explicit constexpr partial_ordering(_OrdResult __v) noexcept in partial_ordering() function57 explicit constexpr partial_ordering(_NCmpResult __v) noexcept in partial_ordering() function150 constexpr operator partial_ordering() const noexcept { in partial_ordering() function236 constexpr operator partial_ordering() const noexcept { in partial_ordering() function
27 explicit constexpr partial_ordering(_EqResult __v) noexcept in partial_ordering() function29 explicit constexpr partial_ordering(_OrdResult __v) noexcept in partial_ordering() function31 explicit constexpr partial_ordering(_NCmpResult __v) noexcept in partial_ordering() function130 constexpr operator partial_ordering() const noexcept { in partial_ordering() function220 constexpr operator partial_ordering() const noexcept { in partial_ordering() function
39 struct partial_ordering { struct40 unsigned value;
428 namespace partial_ordering { namespace