Lines Matching defs:AnyCast
72 * @brief BadAnyCast exception, which is thrown when error occurs in AnyCast
307 friend const T* AnyCast(const Any* operand) noexcept;
309 friend T* AnyCast(Any* operand) noexcept;
311 friend bool AnyCast(const Any* operand, T& value) noexcept;
566 const ValueType* AnyCast(const Any* operand) noexcept
585 bool AnyCast(const Any* operand, ValueType& value) noexcept
616 ValueType* AnyCast(Any* operand) noexcept
636 ValueType AnyCast(const Any& other)
643 auto ptr = AnyCast<U>(&other);
661 ValueType AnyCast(Any& other)
668 auto ptr = AnyCast<U>(&other);
686 ValueType AnyCast(Any&& other)
693 auto ptr = AnyCast<U>(&other);