argparse.ini

package argparse.ini

Type members

Classlikes

case class ConfigParser()

INI-syle config parser.

INI-syle config parser.

case class ParseException(position: Position, message: String, line: String) extends Exception
case class Parseable(readable: Readable, filename: String)
Companion
object
object Parseable
Companion
class
case class Position(file: String, line: Int, col: Int)
case class Section(value: LinkedHashMap[String, Value]) extends Value
Companion
object
object Section
Companion
class
case class Str(value: String) extends Value
sealed trait Value

Value members

Concrete methods

def read(inputs: Parseable*): Section

Priority-ordered input files. When config values will be looked up, the entry first encountered in this list will be used.

Priority-ordered input files. When config values will be looked up, the entry first encountered in this list will be used.