trait Encoder[E, D, T] extends Serializable
Type class for types that can be encoded into others.
- E
encoded type - what to encode to.
- D
decoded type - what to encode from.
- T
tag type.
- Source
- Encoder.scala
- Alphabetic
- By Inheritance
- Encoder
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def encode(d: D): E
Encodes the specified value.