Returns a pointer to the value if this is initialized, otherwise, returns NULL. No-throw
| 463 | // returns NULL. |
| 464 | // No-throw |
| 465 | pointer_const_type get_ptr() const { return m_initialized ? get_ptr_impl() : 0 ; } |
| 466 | pointer_type get_ptr() { return m_initialized ? get_ptr_impl() : 0 ; } |
| 467 | |
| 468 | bool is_initialized() const { return m_initialized ; } |
no test coverage detected