Sha256: 085bd63b6eeceba2d4b996ae7e0c27ec084e3abdf029c4acb372377d2b2bf152
Contents?: true
Size: 474 Bytes
Versions: 6
Compression:
Stored size: 474 Bytes
Contents
#ifndef IV_LV5_DTOA_H_ #define IV_LV5_DTOA_H_ // Double to String // David M Gay's algorithm and V8 fast-dtoa namespace v8 { namespace internal { // Printing floating-point numbers quickly and accurately with integers. // Florian Loitsch, PLDI 2010. extern char* DoubleToCString(double v, char* buffer, int buflen); } } // namespace v8::internal namespace iv { namespace core { using v8::internal::DoubleToCString; } } // namespace iv::lv5 #endif // IV_LV5_DTOA_H_
Version data entries
6 entries across 6 versions & 1 rubygems