Readable

com.malliina.values.Readable
See theReadable companion object
trait Readable[R]

Attributes

Companion:
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Abstract methods

def read(value: String): Either[ErrorMessage, R]

Concrete methods

def emap[S](f: R => Either[ErrorMessage, S]): Readable[S]
def flatMap[S](f: R => Readable[S]): Readable[S]
def map[S](f: R => S): Readable[S]