Sebastian Ehlert

Results 260 issues of Sebastian Ehlert

Reference: - https://github.com/toml-lang/toml/pull/904 - https://github.com/toml-lang/toml/issues/516

specs

Reference - https://github.com/toml-lang/toml/pull/894 - https://github.com/toml-lang/toml/issues/671

specs

Reference - https://github.com/toml-lang/toml/pull/796 - https://github.com/toml-lang/toml/issues/622

specs

The current serializer does directly write to a unit, which can be somewhat limiting in terms of IO operations. - [ ] allow serializer to produce a string, write to...

enhancement

Provide a functional interface to access TOML data structures. It is questionable whether is will be possible to produce pure functions due to the internal usage of pointers to return...

enhancement

Raised by Giannis @gnikit in https://fortran-lang.discourse.group/t/3949/2 > Adding an option or slightly restructuring the diagnostic message to be easily parseable via regex. The message structure is already very good, but...

enhancement

Provide a complete walk-through for building a configuration file for an application, discussing advantages and disadvantages of certain data structures, would also be a good choice for a tutorial. I...

documentation

There is a post on the COOP blog mentioning TOML Fortran, which regularly directs visitors to this repository (see https://cerfacs.fr/coop/fortran-namelist-workedex). It mainly deals with namelists, therefore a potential tutorial could...

documentation

Maybe [Doxygen](https://www.doxygen.nl/) or [breathe](https://breathe.readthedocs.io/) could be used, however the `interface` support in the Doxygen generated documentation is somewhat suboptimal. At least the build interface is mainly just two interfaces (`get_value`...

documentation

The `toml_table` currently uses an array internally to store the keys, which can be inefficient for a large number of keys. It might be useful to adopt a binary search...

enhancement