Method: Config#get_double_list
- Defined in:
- lib/hocon/config.rb
#get_double_list(path) ⇒ Object
Gets a list value with double elements. Throws if the path is unset or null or not a list or contains values not convertible to double.
794 795 796 |
# File 'lib/hocon/config.rb', line 794 def get_double_list(path) raise Hocon::ConfigError::ConfigBugOrBrokenError, "subclasses of `Config` must implement `get_double_list` (#{self.class})" end |