| 248 | } |
| 249 | |
| 250 | TValueContext TBuf::WriteULongLong(unsigned long long i) { |
| 251 | char buf[22]; // enough to hold any 64-bit number |
| 252 | size_t len = ToString(i, buf, sizeof(buf)); |
| 253 | UnsafeWriteValue(buf, len); |
| 254 | return TValueContext(*this); |
| 255 | } |
| 256 | |
| 257 | template <class TFloat> |
| 258 | TValueContext TBuf::WriteFloatImpl(TFloat f, EFloatToStringMode mode, int ndigits) { |
no test coverage detected