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