您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
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. }