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
Then there is no GroupDecoder[CC4]: implicitly[GroupDecoder[CC4]] does not compile.
Which results in it not being usable in for example a Regex[(A, CC4)], but Regex[CC4] works fine.
Interestingly, this only applies if the case class has more than 1 field
if we have the following case class:
case class CC4(str: String, dt: LocalDate)
Then there is no GroupDecoder[CC4]:
implicitly[GroupDecoder[CC4]]
does not compile.Which results in it not being usable in for example a
Regex[(A, CC4)]
, butRegex[CC4]
works fine.Interestingly, this only applies if the case class has more than 1 field
here is a gist with some examples: https://gist.github.com/rubenpieters/3227060a0ab55c48ea6ac899f70a115e
The text was updated successfully, but these errors were encountered: