We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there any way to compose only PathModifies?
Something like following:
case class A(b:B) case class B(c:C) case class C(value:Int) val a = A(B(C(0))) val mod1 = a.modify(_.b) val mod2 = mod1.somecomposefunction(_.c) mod2.setTo(C(1))
I know that you can compose functions of U => PathModify[U, V] but I want to know if there is a way to compose PathModifys directly.
U => PathModify[U, V]
PathModify
The text was updated successfully, but these errors were encountered:
Currently, that's not possible. But of course possible to implement :)
Sorry, something went wrong.
No branches or pull requests
Is there any way to compose only PathModifies?
Something like following:
I know that you can compose functions of
U => PathModify[U, V]
but I want to know if there is a way to composePathModify
s directly.The text was updated successfully, but these errors were encountered: