Christoph Hermann

Results 6 issues of Christoph Hermann

This adds `Lens/PartialLens.fromArray`. It works with `arrayLens` and `objectLens`. ``` js objectLens('location').andThen(objectLens('numbers')).andThen(arrayLens(0)) // === Lens.fromArray(['location', 'numbers', 0]) ``` How do you like it? Do you want me to change anything?...

enhancement

help wanted

See https://github.com/fantasyland/fantasy-monoids/pull/10/files#diff-c07e20a2465c8bd1c3c7de6c4ceda68eR3

enhancement

The currently published version of `fantasy-combinators` has a bug: ``` diff // S combinator function substitution(f) { return function(g) { return function(x) { - f(x)(g(x)); + return f(x)(g(x)); }; };...