Sha256: 95ae152dc9ebaf4638ce2de7bda9a44b0f3a29ab1755646cc000b8b9ccf7686e
Contents?: true
Size: 466 Bytes
Versions: 4
Compression:
Stored size: 466 Bytes
Contents
#ifndef _IV_DTOA_H_ #define _IV_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::core #endif // _IV_DTOA_H_
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
iv-phonic-0.1.1 | ext/include/iv/dtoa.h |
iv-phonic-0.1.0 | ext/include/iv/dtoa.h |
iv-phonic-0.0.9 | ext/include/iv/dtoa.h |
iv-phonic-0.0.8 | ext/include/iv/dtoa.h |