Ramda Adjunct is the most popular and most comprehensive set of functional utilities for use with Ramda, providing a variety of useful, well tested functions with excellent documentation.
Is your feature request related to a problem? Please describe.
Function that take 2 lenses and some data, and copy data structure focused by lens1 to data structure focused by lens2. In fact, it's like copyKeys (#516), but with lenses. For example, it allows to copy deep values.
Is your feature request related to a problem? Please describe.
Function that take 2 lenses and some data, and copy data structure focused by lens1 to data structure focused by lens2. In fact, it's like
copyKeys
(#516), but with lenses. For example, it allows to copy deep values.Describe the solution you'd like
Describe alternatives you've considered
--
Additional context
Based on #349, we can imagine adding
lensCopyWhen
andlensCopyUnless
functions.