Difference between revisions of "Lens"

From HaskellWiki
Jump to navigation Jump to search
(Inital page (stub))
 
(Added section "Packages" with links to lens and lenses)
(2 intermediate revisions 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]
   
   
 
== Links ==
 
== Links ==
   
  +
* [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