Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Why3findUtils.JsonSourceto_file ~pretty_floats path t print the json value t in file path. If pretty_floats is set to true, the floats inside t are truncated to 3 decimals. If it is set to false, floats are printed with full precision. The default is false.
to_string ~pretty_floats t convert the json value t to a string. If pretty_floats is set to true, the floats inside t are truncated to 3 decimals. If it is set to false, floats are printed with full precision. The default is false.
pp_gen ~pretty_floats fmt t print the json value t in formatter fmt. If pretty_floats is set to true, the floats inside t are truncated to 3 decimals. If it is set to false, floats are printed with full precision. The default is false.
pretty fmt t print the json value t in formatter fmt, truncating floats inside t to 3 decimals.
print fmt t print the json value t in formatter fmt. Floats inside t are printed with full precision.