Difference between revisions of "Lens"

From HaskellWiki
Jump to navigation Jump to search
(→‎Links: added link to LensBeginnersCheatsheet)
(→‎Links: Added link to "Lenses: compositional data access and manipulation")
Line 19: Line 19:
 
* [http://www.haskellforall.com/2013/05/program-imperatively-using-haskell.html Haskell for all: Program imperatively using Haskell lenses]
 
* [http://www.haskellforall.com/2013/05/program-imperatively-using-haskell.html Haskell for all: Program imperatively using Haskell lenses]
 
* [[LensBeginnersCheatsheet]]
 
* [[LensBeginnersCheatsheet]]
  +
* [http://skillsmatter.com/podcast/scala/lenses-compositional-data-access-and-manipulation/te-8510 Lenses: compositional data access and manipulation], a podcast of Simon Peyton Jones talking about lenses

Revision as of 08:46, 17 October 2013

This article is a stub. You can help by expanding it.

Lenses are a way to easily access record fields.


Packages


Links