ExpectableFunctor

object ExpectableFunctor extends Functor[Expectable]

Expectable is a Functor and can use the fmap function to modify its value

trait Functor[Expectable]
class Object
trait Matchable
class Any

Value members

Concrete methods

def map[A, B](r: Expectable[A])(f: A => B): Expectable[B]

Inherited methods

def as[A, B](fa: Expectable[A])(b: => B): Expectable[B]
Inherited from:
Functor
def void[A](fa: Expectable[A]): Expectable[Unit]
Inherited from:
Functor
def xmap[A, B](fa: Expectable[A], f: A => B, g: B => A): Expectable[B]
Inherited from:
Functor