Difference between revisions of "Lens"

From HaskellWiki
Jump to navigation Jump to search
(Added a link to "Getting Started with Lenses")
(Added section "Packages" with links to lens and lenses)
(One intermediate revision by the same user not shown)
Line 4: Line 4:
   
 
Lenses are a way to easily access record fields.
 
Lenses are a way to easily access record fields.
  +
  +
  +
== Packages ==
  +
  +
* [http://hackage.haskell.org/package/lens lens]
  +
  +
* [http://hackage.haskell.org/package/lenses lenses]
   
   
Line 10: Line 17:
 
* [http://newartisans.com/2012/11/getting-started-with-lenses/ Getting Started with Lenses]
 
* [http://newartisans.com/2012/11/getting-started-with-lenses/ Getting Started with Lenses]
 
* [http://www.haskellforall.com/2012/01/haskell-for-mainstream-programmers_28.html Haskell for all: Lenses]
 
* [http://www.haskellforall.com/2012/01/haskell-for-mainstream-programmers_28.html Haskell for all: Lenses]
  +
* [http://www.haskellforall.com/2013/05/program-imperatively-using-haskell.html Haskell for all: Program imperatively using Haskell lenses]

Revision as of 09:07, 25 May 2013

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

Lenses are a way to easily access record fields.


Packages


Links