Constructs an object of type any with an empty state.
| 69 | public: |
| 70 | /// Constructs an object of type any with an empty state. |
| 71 | any() noexcept : |
| 72 | vtable(nullptr) |
| 73 | { |
| 74 | } |
| 75 | |
| 76 | /// Constructs an object of type any with an equivalent state as other. |
| 77 | any(const any& rhs) : |