Returns a pointer to the value if this is initialized, otherwise, returns NULL. No-throw
| 299 | // returns NULL. |
| 300 | // No-throw |
| 301 | pointer_const_type get_ptr() const { |
| 302 | return m_initialized ? get_ptr_impl() : 0; |
| 303 | } |
| 304 | pointer_type get_ptr() { return m_initialized ? get_ptr_impl() : 0; } |
| 305 | |
| 306 | bool is_initialized() const { return m_initialized; } |
no outgoing calls
no test coverage detected