Strict method to get the value of a config key. If the requested key
cannot be found, an exception is thrown.
Template can be instantiated with integer, float or string (istring)
type.
Usage Example:
Config.parseFile("some-config.ini");
// throws if not foundautostr = Config.getStrict!(istring)("some-cat", "some-key");
auton = Config.getStrict!(int)("some-cat", "some-key");
Strict method to get the value of a config key. If the requested key cannot be found, an exception is thrown.
Template can be instantiated with integer, float or string (istring) type.
Usage Example: