compose is not exported, but I think it would be helpful to have available for building custom lenses.
In my case, I am using custom lenses to build database queries. I have a prop lens, and also a path that is the composition of multiple props. Since I cannot just use default compiled props, I end up with get(prop('one'), prop('two'), /.../) so it's nicer to compose them behind the scenes: get(path('one', 'two'), /.../))
compose is not exported, but I think it would be helpful to have available for building custom lenses.
In my case, I am using custom lenses to build database queries. I have a prop lens, and also a path that is the composition of multiple props. Since I cannot just use default compiled props, I end up with get(prop('one'), prop('two'), /.../) so it's nicer to compose them behind the scenes: get(path('one', 'two'), /.../))