Configured

metaconfig.Configured
See theConfigured companion object
sealed abstract class Configured[+A] extends Product, Serializable

Attributes

Companion
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
Known subtypes
class NotOk
class Ok[T]

Members list

Value members

Concrete methods

def andThen[B](f: A => Configured[B]): Configured[B]
def fold[B](fa: ConfError => B)(fb: A => B): B
Implicitly added by ConfiguredImplicit
def foreach(fa: ConfError => Unit)(fb: A => Unit): Unit
Implicitly added by ConfiguredImplicit
def get: A
def getOrElse[B >: A](els: => B): B
def getOrRecover(fa: ConfError => A): A
Implicitly added by ConfiguredImplicit
def isOk: Boolean
def map[B](f: A => B): Configured[B]
def orElse[B >: A](alternative: => Configured[B]): Configured[B]
def product[B](other: Configured[B]): Configured[(A, B)]
def recoverWith[B >: A](f: NotOk => Configured[B]): Configured[B]
def recoverWithOrCombine[B >: A](f: => Configured[B]): Configured[B]
Implicitly added by ConfiguredImplicit
def |@|[B](other: Configured[B]): Configured[(A, B)]

Inherited methods

def canEqual(that: Any): Boolean

Attributes

Inherited from:
Equals

Attributes

Inherited from:
Product
def productElement(n: Int): Any

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product