Dima

Results 1 comments of Dima

I came up with ```scala implicit val c2: Codec[Buzz] = { val (n1, n2) = ("fieldName1", "fieldName2") Codec.from( Decoder.forProduct2(n1, n2)(Buzz.apply), Encoder.forProduct2(n1, n2)(Buzz.unapply(_).get) ) } ``` Also if forProductN methods would...