mirror of
https://github.com/pkulchenko/serpent.git
synced 2024-11-21 23:24:24 +00:00
Updated to add a note on numformat
option for better readability (#17).
This commit is contained in:
parent
522a6239f2
commit
96106650b1
@ -77,6 +77,7 @@ Similar to `pcall` and `loadstring` calls, `load` returns status as the first va
|
|||||||
* metatostring (True/false) -- use `__tostring` metamethod when serializing tables (**v0.29**);
|
* metatostring (True/false) -- use `__tostring` metamethod when serializing tables (**v0.29**);
|
||||||
set to `false` to disable and serialize the table as is, even when `__tostring` is present.
|
set to `false` to disable and serialize the table as is, even when `__tostring` is present.
|
||||||
* numformat (string; "%.17g") -- specify format for numeric values (shortest possible round-trippable double).
|
* numformat (string; "%.17g") -- specify format for numeric values (shortest possible round-trippable double).
|
||||||
|
Use "%.16g" for better readability and "%.17g" (the default value) to preserve floating point precision.
|
||||||
* valignore (table) -- allows to specify a list of values to ignore (as keys).
|
* valignore (table) -- allows to specify a list of values to ignore (as keys).
|
||||||
* keyallow (table) -- allows to specify the list of keys to be serialized.
|
* keyallow (table) -- allows to specify the list of keys to be serialized.
|
||||||
Any keys not in this list are not included in final output (as keys).
|
Any keys not in this list are not included in final output (as keys).
|
||||||
|
Loading…
Reference in New Issue
Block a user