CirceConfigOps

io.circe.config.syntax$.CirceConfigOps
final implicit class CirceConfigOps(val config: Config) extends AnyVal

Enriches com.typesafe.config.Config instances with methods to decode to a specific type.

Attributes

Source:
syntax.scala
Graph
Supertypes
class AnyVal
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

def as[A : Decoder]: Either[Error, A]

Read config settings into the specified type.

Read config settings into the specified type.

Attributes

Source:
syntax.scala
def as[A : Decoder](path: String): Either[Error, A]

Read config settings at given path into the specified type.

Read config settings at given path into the specified type.

Attributes

Source:
syntax.scala
def asF[F[_], A : Decoder](implicit evidence$3: Decoder[A], ev: ApplicativeError[F, Throwable]): F[A]

Read config settings into the specified type.

Read config settings into the specified type.

Attributes

Source:
syntax.scala
def asF[F[_], A : Decoder](path: String)(implicit evidence$4: Decoder[A], ev: ApplicativeError[F, Throwable]): F[A]

Read config settings at given path into the specified type.

Read config settings at given path into the specified type.

Attributes

Source:
syntax.scala

Concrete fields

val config: Config

Attributes

Source:
syntax.scala