| 190 | } |
| 191 | |
| 192 | bool String(const Ch* str, SizeType length, bool copy = false) { |
| 193 | (void)copy; |
| 194 | Prefix(kStringType); |
| 195 | return EndValue(WriteString(str, length)); |
| 196 | } |
| 197 | |
| 198 | #if RAPIDJSON_HAS_STDSTRING |
| 199 | bool String(const std::basic_string<Ch>& str) { |