Returns a pointer to the value if this is initialized, otherwise, returns NULL. No-throw
| 335 | // returns NULL. |
| 336 | // No-throw |
| 337 | pointer_const_type get_ptr() const { return m_initialized ? get_ptr_impl() : 0 ; } |
| 338 | pointer_type get_ptr() { return m_initialized ? get_ptr_impl() : 0 ; } |
| 339 | |
| 340 | bool is_initialized() const { return m_initialized ; } |
nothing calls this directly
no test coverage detected