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ä
279 B

  1. #pragma once
  2. namespace utl {
  3. namespace mp {
  4. namespace __impl
  5. {
  6. struct unpack_t
  7. {
  8. template<typename Xs, typename F>
  9. constexpr auto operator()(Xs&& xs, F&& f) const;
  10. };
  11. }
  12. constexpr __impl::unpack_t unpack { };
  13. }
  14. }