Searched defs:partial_ordering (Results 1 – 11 of 11) sorted by relevance
22 struct partial_ordering { struct23 double d;24 constexpr partial_ordering(double d) : d(d) {} in partial_ordering() function25 constexpr partial_ordering(strong_ordering o) : d(o.n) {} in partial_ordering() argument26 constexpr partial_ordering(weak_ordering o) : d(o.n) {} in partial_ordering() function27 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
29 class partial_ordering; global() variable 46 _LIBCPP_HIDE_FROM_ABI explicit constexpr partial_ordering(_OrdResult __v) noexcept : __value_(_ValueT(__v)) {} partial_ordering() function 48 _LIBCPP_HIDE_FROM_ABI explicit constexpr partial_ordering(_NCmpResult __v) noexcept : __value_(_ValueT(__v)) {} partial_ordering() function 129 _LIBCPP_HIDE_FROM_ABI constexpr operator partial_ordering() const noexcept { partial_ordering() function 201 _LIBCPP_HIDE_FROM_ABI constexpr operator partial_ordering() const noexcept { partial_ordering() function [all...]
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;
685 namespace partial_ordering { namespace