TypeMapper

abstract class TypeMapper[BaseType, CustomType]
Companion:
object
class Object
trait Matchable
class Any

Value members

Abstract methods

def toBase(custom: CustomType): BaseType
def toCustom(base: BaseType): CustomType

Concrete methods

def map2[Other](f: CustomType => Other)(g: Other => CustomType): TypeMapper[BaseType, Other]