Converter

abstract class Converter[A]()

A type class that converts instances of type A to instances of type X.

A type class that converts instances of type A to instances of type X.

class Object
trait Matchable
class Any

Type members

Types

type X

The output type of this converter.

The output type of this converter.

Value members

Abstract methods

def convert(a: A): X

Returns a new X converted from the given A.

Returns a new X converted from the given A.