Ior

oxygen.core.Ior
See theIor companion object
sealed trait Ior[+L, +R]

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class Both[L, R]
trait Distinct[L, R]
class Left[L]
class Right[R]

Members list

Type members

Types

type SelfT[+L2, +R2] <: Ior[L2, R2]

Value members

Abstract methods

def bimap[L2, R2](lf: L => L2, rf: R => R2): SelfT[L2, R2]
def leftMap[L2](lf: L => L2): SelfT[L2, R]
def map[R2](rf: R => R2): SelfT[L, R2]
def rightMap[R2](rf: R => R2): SelfT[L, R2]