purescript-lenses icon indicating copy to clipboard operation
purescript-lenses copied to clipboard

Supporting code for the book /Lenses for the Mere Mortal: PureScript Edition/

Results 4 purescript-lenses issues
Sort by recently updated
recently updated
newest added

Hi Brian, thanks for your great optics introduction "**Lenses for the Mere Mortal: PureScript Edition**". As I failed to easily launch a `REPL` for your `bower` project I migrated it...

Compiling with purescript 0.14 and ported to spago, removing the old bower approach

https://github.com/marick/purescript-lenses/blob/master/src/Traversal.purs#L116 could completely eliminate the reference to `Map`: ```purescript _at3_trav_1' :: ∀ a _1_ keyed . At keyed Int (Tuple a _1_) => Traversal' keyed a _at3_trav_1' = at 3

Trying to follow along with the examples, I cut and paste the imports into the repl from `Product.purs` And then tried to insert the first examples into the repl. The...