aboutsummaryrefslogtreecommitdiffstats
path: root/erts/doc/src/erlang.xml
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2014-02-24 17:19:19 +0100
committerLukas Larsson <[email protected]>2014-02-24 17:19:19 +0100
commited5cb316a0a1bbc30f90e7bac27efed3818d4a16 (patch)
treea7242471f60a0f343e9839504b12212e71018193 /erts/doc/src/erlang.xml
parent60b771c936b3d5c1bf3f8c223f789e5fc639dbab (diff)
parenta3af5f4a5c4568225ef91ee4493da6bf659f7161 (diff)
downloadotp-ed5cb316a0a1bbc30f90e7bac27efed3818d4a16.tar.gz
otp-ed5cb316a0a1bbc30f90e7bac27efed3818d4a16.tar.bz2
otp-ed5cb316a0a1bbc30f90e7bac27efed3818d4a16.zip
Merge branch 'lukas/erts/float_encoding/OTP-11738'
* lukas/erts/float_encoding/OTP-11738: erts: Set default external enc to use new float scheme
Diffstat (limited to 'erts/doc/src/erlang.xml')
-rw-r--r--erts/doc/src/erlang.xml7
1 files changed, 4 insertions, 3 deletions
diff --git a/erts/doc/src/erlang.xml b/erts/doc/src/erlang.xml
index e440a3d270..aeded7c719 100644
--- a/erts/doc/src/erlang.xml
+++ b/erts/doc/src/erlang.xml
@@ -6589,11 +6589,12 @@ ok
some details of the encoding. This option was
introduced in R11B-4. Currently, the allowed values for <c><anno>Version</anno></c>
are <c>0</c> and <c>1</c>.</p>
- <p><c>{minor_version, 1}</c> forces any floats in the term to be encoded
+ <p><c>{minor_version, 1}</c> is since 17.0 the default, it forces any floats in
+ the term to be encoded
in a more space-efficient and exact way (namely in the 64-bit IEEE format,
rather than converted to a textual representation). <c>binary_to_term/1</c>
- in R11B-4 and later is able decode the new representation.</p>
- <p><c>{minor_version, 0}</c> is currently the default, meaning that floats
+ in R11B-4 and later is able decode this representation.</p>
+ <p><c>{minor_version, 0}</c> meaning that floats
will be encoded using a textual representation; this option is useful if
you want to ensure that releases prior to R11B-4 can decode resulting
binary.</p>