File tree 2 files changed +35
-2
lines changed
2 files changed +35
-2
lines changed Original file line number Diff line number Diff line change
1
+ sphinx-build -M html ./ ./_build
Original file line number Diff line number Diff line change 2
2
V8 Values
3
3
=========
4
4
5
+ V8 values represent a family of V8 primitive or reference values in JVM.
6
+
7
+ ======================== =========================== ===========================
8
+ Feature V8 Primitive Values V8 Reference Values
9
+ ======================== =========================== ===========================
10
+ Decoupled with V8 Yes No
11
+ Immutable Yes No
12
+ Performance High Medium
13
+ ======================== =========================== ===========================
14
+
15
+ V8 Primitive Values
16
+ ===================
17
+
18
+ =========================== ======================
19
+ Java Type JavaScript Type
20
+ =========================== ======================
21
+ V8ValueBigInteger bigint
22
+ V8ValueBoolean bool
23
+ V8ValueDouble number
24
+ V8ValueInteger number
25
+ V8ValueLong bigint
26
+ V8ValueNull null
27
+ V8ValueString string
28
+ V8ValueUndefined undefined
29
+ V8ValueZonedDateTime Date
30
+ =========================== ======================
31
+
32
+ V8 Reference Values
33
+ ===================
34
+
5
35
.. toctree ::
6
36
:maxdepth: 1
7
- :glob:
8
37
9
- *
38
+ v8_collection
39
+ v8_function
40
+ v8_promise
41
+ v8_typed_array
You can’t perform that action at this time.
0 commit comments