Difference between revisions of "Lens"

From HaskellWiki
Jump to navigation Jump to search
(Inital page (stub))
 
(→‎Links: Added links to "Why I don’t like the lens library", "CCC #23: Picking a lens library", "Musings on Lens")
(5 intermediate revisions by 2 users 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]
  +
* [[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
  +
* [http://fvisser.nl/post/2013/okt/11/why-i-dont-like-the-lens-library.html Why I don’t like the lens library]
  +
* [http://ro-che.info/ccc/23 CCC #23: Picking a lens library]
  +
* [http://gist.io/6923187 Musings on Lens]

Revision as of 09:00, 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