| 635 | template <typename T> |
| 636 | RAPIDJSON_DISABLEIF_RETURN((internal::OrExpr<internal::IsPointer<T>, internal::IsGenericValue<T> >), (ValueType&)) |
| 637 | Set(ValueType& root, T value, typename ValueType::AllocatorType& allocator) const { |
| 638 | return Create(root, allocator) = ValueType(value).Move(); |
| 639 | } |
| 640 | |
| 641 | //! Set a value in a document, with move semantics. |
| 642 | template <typename stackAllocator> |
no test coverage detected