API Reference

ExpressBase module

Missing docstring.

Missing docstring for calculation. Check Documenter's build log for details.

ExpressBase.Files module

ExpressBase.Files.saveFunction
save(file, data)

Save data to file.

By now, YAML, JSON, and TOML formats are supported. The format is recognized by the file extension.

If data is a Dict, its keys should be Strings so that load can return the same data.

Warning

Allowed data types can be referenced in JSON.jl documentation and YAML.jl documentation. For TOML format, only AbstractDict type is allowed.

source
ExpressBase.Files.loadFunction
load(file)

Load data from file to a Dict.

By now, YAML, JSON, and TOML formats are supported. The format is recognized by the file extension.

source