# BOOLEAN = ->read_config( SOURCE, OPTIONS ); # SOURCE - scalar containing filename, scalar ref containing file contents, or filehandle to read from # OPTIONS - hash reference containing any driver-specific options $config_general->read_config(\*CONFIG_FILE, { -AllowMultiOptions => 1, -AutoTrue => 1 }); $config_inifiles->read_config('./test.ini', { -nocase => 1, -allowcontinue => 1, -commentchar => ';' }); $config_yaml->read_config(\$default_values); # BOOLEAN = ->write_config( DESTINATION, OPTIONS ); # DESTINATION - scalar containing filename, or scalar ref to assign contents to, or filehandle to write to # OPTIONS - hash reference containing any driver-specific options $config_general->write(\*CONFIG_OUTPUT); $config_yaml->write('~/test.yml');