Provide Get and Put instances for Scala Seq for Doobie module
未关闭
enhancement
- 主要语言
- Scala
- 星标
- 2
- 派生
- 0
- 平均合并
- 3 天 18 小时
- 30 天内合并 PR
- 3
描述
## 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)
```
贡献指南
这个仓库没有索引到贡献指南
评估
这个 Issue 还没有评估数据。