2 #ifndef BOOST_SMART_PTR_SHARED_ARRAY_HPP_INCLUDED
3 #define BOOST_SMART_PTR_SHARED_ARRAY_HPP_INCLUDED
31 T* p =
static_cast< Y*
>( 0 );
46 template<
class T>
class shared_array
51 typedef checked_array_deleter<T> deleter;
52 typedef shared_array<T> this_type;
56 typedef T element_type;
58 shared_array() noexcept : px( 0 ), pn()
62 #if !defined( BOOST_NO_CXX11_NULLPTR )
71 explicit shared_array( Y * p ): px( p ), pn( p, checked_array_deleter<Y>() )
73 sp_assert_convertible< Y[], T[] >();
82 template<
class Y,
class D> shared_array( Y * p, D d ): px( p ), pn( p,
d )
84 sp_assert_convertible< Y[], T[] >();
89 template<
class Y,
class D,
class A> shared_array( Y * p, D d,
A a ): px( p ), pn( p,
d, a )
91 sp_assert_convertible< Y[], T[] >();
96 #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
100 shared_array( shared_array
const & r ) noexcept : px( r.px ), pn( r.pn )
104 shared_array( shared_array && r ) noexcept : px( r.px ), pn()
115 shared_array( shared_array<Y>
const & r )
117 noexcept : px( r.px ), pn( r.pn )
119 sp_assert_convertible< Y[], T[] >();
125 shared_array( shared_array<Y>
const & r, element_type * p ) noexcept : px( p ), pn( r.pn )
131 shared_array & operator=( shared_array
const & r ) noexcept
133 this_type( r ).swap( *
this );
137 #if !defined(BOOST_MSVC) || (BOOST_MSVC >= 1400)
140 shared_array & operator=( shared_array<Y>
const & r ) noexcept
142 this_type( r ).swap( *
this );
148 #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
150 shared_array & operator=( shared_array && r ) noexcept
152 this_type(
static_cast< shared_array &&
>( r ) ).swap( *
this );
157 shared_array & operator=( shared_array<Y> && r ) noexcept
159 this_type(
static_cast< shared_array<Y> &&
>( r ) ).swap( *
this );
165 void reset() noexcept
167 this_type().swap( *
this );
170 template<
class Y>
void reset( Y * p )
172 assert( p == 0 || p != px );
173 this_type( p ).swap( *
this );
176 template<
class Y,
class D>
void reset( Y * p, D d )
178 this_type( p, d ).swap( *
this );
181 template<
class Y,
class D,
class A>
void reset( Y * p, D d,
A a )
183 this_type( p, d, a ).swap( *
this );
186 template<
class Y>
void reset( shared_array<Y>
const & r, element_type * p ) noexcept
188 this_type( r, p ).swap( *
this );
191 T & operator[] (std::ptrdiff_t i)
const noexcept
198 T * get()
const noexcept
204 explicit operator bool ()
const noexcept
208 bool operator! ()
const noexcept
213 bool unique()
const noexcept
218 long use_count()
const noexcept
223 void swap(shared_array<T> & other) noexcept
229 void * _internal_get_deleter( std::type_info
const & ti )
const noexcept
236 template<
class Y>
friend class shared_array;
239 detail::shared_count pn;
245 return a.get() == b.get();
250 return a.get() != b.get();
253 #if !defined( BOOST_NO_CXX11_NULLPTR )
279 return std::less<T*>()(a.get(), b.get());
289 return static_cast< D *
>( p._internal_get_deleter(
typeid(D) ) );
294 #endif // #ifndef BOOST_SMART_PTR_SHARED_ARRAY_HPP_INCLUDED