Expand description
§dynamic
A dynamically typed value with fast downcasting.
Provides a Dynamic type, which contains a dynamically typed value.
Dynamic is similar to Any from std::any::Any, except that downcasting
does not involve any virtual calls since the TypeId of the contained
value is pre-computed.