MCPcopy Create free account
hub / github.com/boostorg/pfr / make_stdarray

Function make_stdarray

include/boost/pfr/detail/stdarray.hpp:22–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20
21template <class... Types>
22constexpr auto make_stdarray(const Types&... t) noexcept {
23 return std::array<std::common_type_t<Types...>, sizeof...(Types)>{t...};
24}
25
26template <class T, std::size_t... I>
27constexpr auto make_stdarray_from_tietuple(const T& t, std::index_sequence<I...>, int) noexcept {

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected