You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actually does this mean that if we have a Sequence of Integers, or something else other than String, that we would need an extra pair of these get & put for each, right?
Actually does this mean that if we have a Sequence of Integers, or something else other than String, that we would need an extra pair of these get & put for each, right?
I guess we could define it as generic implicit method implicit def getForSeq[T]: Get[Seq[T]]. We could also do a conversion to List in our application code and in such case we wouldn't need this at all. It's up to a discussion.
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.
The text was updated successfully, but these errors were encountered: