Provide Get and Put instances for Scala Seq for Doobie module
Abierto
enhancement
- Lenguaje dominante
- Scala
- Estrellas
- 2
- Forks
- 0
- Merge medio
- 3 d 18 h
- PR fusionados (30 d)
- 3
Descripción
## Background
There is no built-in Put and Get for Scala Seq type, only for List. We should provide it as part of the library.
```scala
implicit val get: Get[Seq[String]] = Get[List[String]].map(_.toSeq)
implicit val put: Put[Seq[String]] = Put[List[String]].contramap(_.toList)
```
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Evaluación
Este issue todavía no se ha evaluado.