C++11's std::shared_ptr<> provides a kind of bool operator.
operator unspecified-bool-type() const;
(It's not a straight-up operator bool() const due to the dangers from implicit casting of type bool.)
Why doesn't std::weak_ptr<> have a similar operator? I find myself constantly typing
if( !wp.expired() )
when I want to type
if( wp )
Why no bool conversion for weak_ptr?
operator boolcan now be safely done straight-up in C++11: stackoverflow.com/a/6242355/46642 – R. Martinho Fernandes Apr 23 '12 at 18:55