9 #include <Covellite/Predefined.forward.hpp>
13 #elif BOOST_PLAT_ANDROID
14 #include <boost/any.hpp>
21 inline T any_cast(
const Any_t & _Value)
23 return any_location::any_cast<T>(_Value);
27 inline T any_cast(Any_t & _Value)
29 return any_location::any_cast<T>(_Value);
32 inline bool has_value(
const Any_t & _Value) noexcept
35 return _Value.has_value();
36 # elif BOOST_PLAT_ANDROID
37 return !_Value.empty();