A Racket package for creating and composing pure functional lenses
Go to file
2015-07-13 02:17:45 -07:00
lens Add Alex Knauth as author 2015-07-13 02:17:45 -07:00
unstable Refactor struct/lens definition 2015-07-12 20:59:55 -07:00
.gitignore Add documentation coverage test, remove undocumented exports 2015-07-06 12:52:04 -07:00
.travis.yml Remove 6.0 due to cover 2015-07-12 21:11:50 -07:00
info.rkt Bump version 2015-07-10 19:03:17 -07:00
README.md Shrink section header 2015-07-08 00:36:47 -07:00

lens Build Status Coverage Status Stories in Ready

Documentation

A Racket package for creating and composing pure functional lenses.

raco pkg install lens (require lens)

A lens is a value that can be used to focus on a small subpiece of some larger structure. Given a lens and a value of that larger structure, two values can be dervied: a view value, which is the subpiece, and a context function, which accepts a new view value and returns a new structure with the old view replaced by the new view. Think of them as composable, pure functional getters and setters. Examples can be found in the documentation.

Contributions

This project uses Github issues organized by a Waffle board to track what's being worked on. Check the board to see if there's any features, bugs, etc. that interest you, or create a new Github issue to inquire about something you'd like to see changed.