V8 API Reference, 7.2.502.16 (for Deno 0.2.4)
Main Page
Related Pages
+
Namespaces
Namespace List
+
Namespace Members
+
All
a
c
d
g
i
k
n
p
r
s
t
Functions
Typedefs
Enumerations
Enumerator
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
~
+
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
~
+
Variables
a
c
d
e
h
k
l
n
o
s
Typedefs
Enumerations
+
Files
File List
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Pages
fixed-dtoa.h
1
// Copyright 2010 the V8 project authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file.
4
5
#ifndef V8_FIXED_DTOA_H_
6
#define V8_FIXED_DTOA_H_
7
8
#include "src/vector.h"
9
10
namespace
v8
{
11
namespace
internal {
12
13
// Produces digits necessary to print a given number with
14
// 'fractional_count' digits after the decimal point.
15
// The buffer must be big enough to hold the result plus one terminating null
16
// character.
17
//
18
// The produced digits might be too short in which case the caller has to fill
19
// the gaps with '0's.
20
// Example: FastFixedDtoa(0.001, 5, ...) is allowed to return buffer = "1", and
21
// decimal_point = -2.
22
// Halfway cases are rounded towards +/-Infinity (away from 0). The call
23
// FastFixedDtoa(0.15, 2, ...) thus returns buffer = "2", decimal_point = 0.
24
// The returned buffer may contain digits that would be truncated from the
25
// shortest representation of the input.
26
//
27
// This method only works for some parameters. If it can't handle the input it
28
// returns false. The output is null-terminated when the function succeeds.
29
bool
FastFixedDtoa(
double
v,
int
fractional_count,
30
Vector<char> buffer,
int
* length,
int
* decimal_point);
31
32
}
// namespace internal
33
}
// namespace v8
34
35
#endif // V8_FIXED_DTOA_H_
v8
Definition:
libplatform.h:13
v8
src
fixed-dtoa.h
Generated on Tue Dec 25 2018 14:38:49 by
1.8.14