ConfigReadable

com.malliina.config.ConfigReadable
See theConfigReadable companion object
trait ConfigReadable[T]

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def parseOpt(key: String, c: Config): Either[ConfigError, Option[T]]

Concrete methods

def emap[U](f: T => Either[ConfigError, U]): ConfigReadable[U]
def emapParsed[U](f: T => Either[ErrorMessage, U]): ConfigReadable[U]
def flatMap[U](f: T => ConfigReadable[U]): ConfigReadable[U]
def map[U](f: T => U): ConfigReadable[U]
def parse(key: String, c: Config): Either[ConfigError, T]
def read(key: String, c: Config): Either[ErrorMessage, T]