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
Is there any way to use @Lenses to create lenses for all fields except noLens? I tried using private val or multiple parameter lists, but both cases resulted in a compilation error. I know I can manually create all the other lenses, but that's very verbose.
Thanks
The text was updated successfully, but these errors were encountered:
Suppose I have the following
case class
(I'm using Scala 2.13):Is there any way to use
@Lenses
to create lenses for all fields exceptnoLens
? I tried usingprivate val
or multiple parameter lists, but both cases resulted in a compilation error. I know I can manually create all the other lenses, but that's very verbose.Thanks
The text was updated successfully, but these errors were encountered: