| // Copyright (C) 2020-2025 Free Software Foundation, Inc. |
| // |
| // This file is part of the GNU ISO C++ Library. This library is free |
| // software; you can redistribute it and/or modify it under the |
| // terms of the GNU General Public License as published by the |
| // Free Software Foundation; either version 3, or (at your option) |
| // any later version. |
| |
| // This library is distributed in the hope that it will be useful, |
| // but WITHOUT ANY WARRANTY; without even the implied warranty of |
| // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| // GNU General Public License for more details. |
| |
| // You should have received a copy of the GNU General Public License along |
| // with this library; see the file COPYING3. If not see |
| // <http://www.gnu.org/licenses/>. |
| |
| // { dg-do compile { target c++20 } } |
| |
| #include <optional> |
| |
| void |
| test01() |
| { |
| using O = std::optional<int>; |
| |
| static_assert( std::is_eq(O{} <=> O{}) ); |
| static_assert( std::is_lt(O{} <=> O{1}) ); |
| static_assert( std::is_gt(O{1} <=> O{}) ); |
| static_assert( std::is_eq(O{1} <=> O{1}) ); |
| static_assert( std::is_lt(O{1} <=> O{2}) ); |
| |
| static_assert( O{} == O{} ); |
| static_assert( O{} < O{1} ); |
| static_assert( O{1} > O{} ); |
| static_assert( O{1} == O{1} ); |
| static_assert( O{1} != O{2} ); |
| static_assert( O{1} < O{2} ); |
| |
| using Os = std::optional<short>; |
| static_assert( std::is_eq(O{} <=> Os{}) ); |
| static_assert( std::is_lt(O{} <=> Os{1}) ); |
| static_assert( std::is_gt(O{1} <=> Os{}) ); |
| static_assert( std::is_eq(O{1} <=> Os{1}) ); |
| static_assert( std::is_lt(O{1} <=> Os{2}) ); |
| |
| static_assert( O{} == Os{} ); |
| static_assert( O{} < Os{1} ); |
| static_assert( O{1} > Os{} ); |
| static_assert( O{1} == Os{1} ); |
| static_assert( O{1} != Os{2} ); |
| static_assert( O{1} < Os{2} ); |
| |
| // Would requires narrowing conversion to make operands the same type: |
| static_assert( !std::three_way_comparable_with<O, std::optional<unsigned>> ); |
| } |
| |
| void |
| test02() |
| { |
| using O = std::optional<int>; |
| using std::nullopt; |
| |
| static_assert( std::is_eq(O{} <=> nullopt) ); |
| static_assert( std::is_gt(O{1} <=> nullopt) ); |
| static_assert( std::is_lt(nullopt <=> O{1}) ); |
| |
| static_assert( O{} == nullopt ); |
| static_assert( O{1} != nullopt ); |
| static_assert( nullopt != O{1} ); |
| static_assert( O{1} > nullopt ); |
| static_assert( nullopt < O{1} ); |
| static_assert( nullopt <= O{} ); |
| static_assert( nullopt <= O{1} ); |
| } |
| |
| template<typename T> |
| concept has_spaceship = requires (const T& t) { t <=> t; }; |
| |
| void |
| test03() |
| { |
| struct E |
| { |
| auto operator<=>(const E&) const { return std::strong_ordering::equal; } |
| }; |
| static_assert( !std::three_way_comparable<E> ); // not equality comparable |
| using O = std::optional<E>; |
| static_assert( !std::three_way_comparable<O> ); |
| static_assert( ! has_spaceship<O> ); // PR libstdc++/98842 |
| struct U : O { }; |
| static_assert( ! has_spaceship<U> ); |
| } |