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

Version Path
iv-phonic-0.0.7 ext/include/iv/dtoa.h
iv-phonic-0.0.6 ext/include/iv/dtoa.h
iv-phonic-0.0.5 ext/include/iv/dtoa.h
iv-phonic-0.0.3 ext/include/iv/dtoa.h
iv-phonic-0.0.2 ext/include/iv/dtoa.h
iv-phonic-0.0.1 ext/include/iv/dtoa.h