| 807 | */ |
| 808 | template <typename ValueType> |
| 809 | ValueType* |
| 810 | any_cast(Any* operand) |
| 811 | { |
| 812 | return operand && operand->Type() == typeid(ValueType) |
| 813 | ? &static_cast<Any::Holder<ValueType>*>(operand->_content.get())->_held |
| 814 | : nullptr; |
| 815 | } |
| 816 | |
| 817 | /** |
| 818 | * \ingroup gr_any |
nothing calls this directly
no test coverage detected