SettingTree

configparse.core.SettingTree
case class SettingTree(settings: Map[String, Setting[_]], groups: Map[String, SettingTree])

A tree of program-declared settings and groups.

An instance of this class is typically generated via a macro.

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

def traverse(fn: Setting[_] => Unit): Unit
def traverseNamed(fn: (Seq[String], Setting[_]) => Unit): Unit
def traverseNamedPath(path: Seq[String])(fn: (Seq[String], Setting[_]) => Unit): Unit

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product

Concrete fields

val visitor: Visitor[Unit]