You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 rivejä
303 B

  1. #pragma once
  2. namespace utl {
  3. namespace mp {
  4. namespace __impl
  5. {
  6. struct if_t
  7. {
  8. template <typename Cond, typename Then, typename Else>
  9. constexpr auto operator()(Cond&& c, Then&& t, Else&& e) const;
  10. };
  11. }
  12. constexpr __impl::if_t if_ { };
  13. }
  14. }