[libcxx-commits] [PATCH] D97176: [libcxx] adds concepts std::equality_comparable[_with]

Mark de Wever via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Mon Feb 22 09:31:28 PST 2021


Mordante added a comment.

I like the extensive set of tests you added! I'd like to see the build pass before accepting.



================
Comment at: libcxx/include/concepts:232
+concept __weakly_equality_comparable_with =
+  requires(const remove_reference_t<_Tp>& t, const remove_reference_t<_Up>& u) {
+    { t == u } -> __boolean_testable;
----------------
`t` -> `__t` and `u` -> `__u`


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D97176/new/

https://reviews.llvm.org/D97176



More information about the libcxx-commits mailing list