| 237 | context_type& context_; |
| 238 | |
| 239 | void write_null_pointer(bool is_string = false) { |
| 240 | auto s = this->specs; |
| 241 | s.set_type(presentation_type::none); |
| 242 | write_bytes<Char>(this->out, is_string ? "(null)" : "(nil)", s); |
| 243 | } |
| 244 | |
| 245 | template <typename T> void write(T value) { |
| 246 | detail::write<Char>(this->out, value, this->specs, this->locale); |