\returns a pointer to the stored value \requires a value is stored \group pointer \synopsis constexpr const T *operator->() const;
| 1322 | /// \group pointer |
| 1323 | /// \synopsis constexpr const T *operator->() const; |
| 1324 | constexpr const T* operator->() const { |
| 1325 | return std::addressof(this->m_value); |
| 1326 | } |
| 1327 | |
| 1328 | /// \group pointer |
| 1329 | /// \synopsis constexpr T *operator->(); |
nothing calls this directly
no outgoing calls
no test coverage detected