AbInitioSoftwareBase module

Public interfaces

AbInitioSoftwareBase.loadFunction
load(file)

Load data from file to a Dict.

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

source
AbInitioSoftwareBase.saveFunction
save(file, data)

Save data to file.

By now, YAML, JSON, and TOML formats are supported. The format is recognized by 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