| 222 | |
| 223 | template <class _First, __same_as<_First>... _Rest> |
| 224 | constexpr auto __make_static_vector(_First __first, _Rest... __rest) noexcept |
| 225 | { |
| 226 | return __static_vector<_First, 1 + sizeof...(_Rest)>{__first, __rest...}; |
| 227 | } |
| 228 | } // namespace STDEXEC |
| 229 | |
| 230 | #include "__epilogue.hpp" |
no outgoing calls
no test coverage detected