Same effect as this->clear().
| 97 | |
| 98 | /// Same effect as this->clear(). |
| 99 | ~any() |
| 100 | { |
| 101 | this->clear(); |
| 102 | } |
| 103 | |
| 104 | /// Constructs an object of type any that contains an object of type T direct-initialized with std::forward<ValueType>(value). |
| 105 | /// |