25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

24 satır
595 B

  1. #pragma once
  2. #include <ecs/config.h>
  3. #include "./fixed_threshold.h"
  4. #include "../strategy/none.h"
  5. beg_namespace_ecs_signature_system_parallelism
  6. {
  7. namespace __impl
  8. {
  9. struct none_below_threshold_t
  10. {
  11. template<typename T_threshold, typename T_strategy>
  12. constexpr decltype(auto) operator()(T_threshold th, T_strategy s) const noexcept
  13. { return fixed_threshold(th, none, s); }
  14. };
  15. }
  16. constexpr decltype(auto) none_below_threshold = __impl::none_below_threshold_t { };
  17. }
  18. end_namespace_ecs_signature_system_parallelism