|
template<class T , class... TARGS, typename std::enable_if<!std::is_array< T >::value, int >::type = 0> |
LIBCOPP_EXPLICIT_NODISCARD_ATTR std::unique_ptr< T > | make_unique (TARGS &&...args) |
|
template<class T , typename std::enable_if< std::is_array< T >::value &&std::extent< T >::value==0, int >::type = 0> |
LIBCOPP_EXPLICIT_NODISCARD_ATTR std::unique_ptr< T > | make_unique (size_t sz) |
|
template<class T , class... TARGS, typename std::enable_if< std::extent< T >::value !=0, int >::type = 0> |
void | make_unique (TARGS &&...)=delete |
|
template<class TSTORAGE , class... TARGS> |
static LIBCOPP_UTIL_FORCEINLINE void | __make_result_value (typename TSTORAGE::storage_type &out, TARGS &&...args) noexcept(noexcept(TSTORAGE::construct_storage(out, std::forward< TARGS >(args)...))) |
|
template<class TSTORAGE , class... TARGS> |
static LIBCOPP_UTIL_FORCEINLINE void | __make_result_value (LIBCOPP_COPP_NAMESPACE_ID::memory::strong_rc_ptr< typename TSTORAGE::storage_type > &out, TARGS &&...args) noexcept(noexcept(TSTORAGE::construct_storage(out, LIBCOPP_COPP_NAMESPACE_ID::memory::make_strong_rc< typename TSTORAGE::storage_type >(std::forward< TARGS >(args)...)))) |
|
template<class TSTORAGE , class... TARGS> |
static LIBCOPP_UTIL_FORCEINLINE void | __make_result_value (::std::shared_ptr< typename TSTORAGE::storage_type > &out, TARGS &&...args) noexcept(noexcept(TSTORAGE::construct_storage(out, ::std::make_shared< typename TSTORAGE::storage_type >(std::forward< TARGS >(args)...)))) |
|