| 804 | template <typename T> |
| 805 | RAPIDJSON_DISABLEIF_RETURN((internal::IsPointer<T>), (GenericValue&)) |
| 806 | operator=(T value) { |
| 807 | GenericValue v(value); |
| 808 | return *this = v; |
| 809 | } |
| 810 | |
| 811 | //! Deep-copy assignment from Value |
| 812 | /*! Assigns a \b copy of the Value to the current Value object |