Returns true if *this has no contained object, otherwise false.
| 166 | |
| 167 | /// Returns true if *this has no contained object, otherwise false. |
| 168 | bool empty() const noexcept |
| 169 | { |
| 170 | return this->vtable == nullptr; |
| 171 | } |
| 172 | |
| 173 | #ifndef ANY_IMPL_NO_RTTI |
| 174 | /// If *this has a contained object of type T, typeid(T); otherwise typeid(void). |
no outgoing calls
no test coverage detected