FiNeR
FiNeR copied to clipboard
Fortran INI ParseR and generator
**Summary:** - [ ] `default` key - [ ] `optional` key - [ ] simplified error handling. **Detailed description:** In my code FiNeR usage looks to have a lot of...
*(Re-opened from wrongly posted for FLAP)* Dear @szaghi, I recently started using Fortran for a project and stumbled across your libraries, especially FiNeR (and maybe in the future I'll use...
The repeat references in the wiki and README to `Lib_INI_IO.f90` are wrong? I spent a several hours thinking it was my build environment, trying both cmake and FoBiS, before I...
In physics for numerical simulations we often use complex valued parameters, e.g. dielectric permittivity, impedance, frequency, etc., so it would be natural to support them. At the moment it can...
Exploit FoBiS doctests for improving code coverage/regression/usage-documentation.
It is often allowed, in many config format, to insert options before the first defined section, e.g. ``` ini foo = bar bar = foo [first-section] baz = first ```...
Ad more unit tests and evaluate the integration of benchmarks for measure parsing performance (maybe it is the right place to use datetime library of milancurcic).
Implement a str function for sanitizing string number trimming out uncessary zeros, e.g. 0.100000e001 => 0.1e1
When I try to get an option for an allocatable character variable, `%get` returns an empty string. If I change the `character(:), allocatable :: cvar` declaration to `character(64) :: cvar`,...