The prolens package is a Haskell library with a minimal and lightweight implementation of optics. Optic is a high-level concept for values that provide composable access to different parts of structures.
Prolens implements the following optics:
- Lens β composable getters and setters
- Prism β composable constructors and deconstructors
- Traversal β composable data structures visitors
Goalsπ
We created the prolens project in pursuit of the following goals:
- Education. Teach others how to implement and work with profunctor optics. This also means that some underlying types or type variables have different unconventional names
- Learning. Explore new concepts ourselves and understand better abstractions used in the implementation.
- Minimalism. Keep the number of dependencies, features and code low, but still solve common problems.
- Performance. Despite being minimalist, implement optics so they are as fast as manual and clumsy pattern matching.
- Exploration. Understand how different modern Haskell features can work on improving interface and bring new flavour into standard approaches. Because of this, we implement our own
Profunctortypeclass with the QuantifiedConstraints feature, which is not present in any other library at the moment. - Profunctors. We use profunctor encoding of optics because it has more elegant design with fewer surprises.
Featuresπ
- Lightweight. Only base in dependencies. The project itself also has a rather small amount of code.
- Fast. Despite being lightweight,
prolensprovides a performant API. We use the inspection-testing library to guarantee that our implementation of optics compiles to the same code as plain Haskell getters, record-update syntax and pattern matching. - Excellent documentation. The
prolenslibrary contains a mini-tutorial on optics, enough to understand how and when to use basic lenses and prisms. - Beginner-friendly. The abstractions in the implementation are hardcore, but our documentation presents the concept in a beginner-friendly and approachable manner.
- Lawful. We use property-based testing to make sure that laws of all underlying abstractions are verified.
How to useπ
prolens is compatible with the latest GHC compiler versions starting from 8.6.5.
In order to start using prolens in your project, you will need to set it up with the three easy steps:
Add the dependency on
prolensin your projectβs.cabalfile. For this, you should modify thebuild-dependssection by adding the name of this library. After the adjustment, this section could look like this:build-depends: base ^>= 4.15 , prolens ^>= LATEST_VERSIONIn the module where you wish to use composable getters and setters, you should add the import:
import Prolens (Lens', lens, view)Now you can use the types and functions from the library:
data User = User { userName :: String , userAge :: Int } nameL :: Lens' User String nameL = lens userName (\u new -> u { userName = new }) main :: IO () main = putStrln $ view nameL (User "Johnny" 27)
Usage with Stackπ
If prolens is not available on your current Stackage resolver yet, fear not! You can still use it from Hackage by adding the following to the extra-deps section of your stack.yaml file:
extra-deps:
- prolens-CURRENT_VERSIONComparison to other librariesπ
-
It is the most mature Haskell library for optics.
lensprovides a richer interface, but it is heavyweight and based on Van Laarhoven (VL) encoding of lenses. -
A lightweight implementation of optics compatible with
lens.microlensis also minimalistic, but it doesnβt provide prisms and is based on VL encoding. -
The
opticslibrary uses the profunctor encoding. It provides much more features thanprolens, but at the same time itβs heavyweight. Also,opticsuses an opaque representation of optics (e.g.Β they are wrapped in a newtype), which means that they are composed using the custom operator%, while inprolensoptics are type aliases to functions and can be easily composed with the dot.operator. -
This library is also based on profunctor encoding (as the name suggests) and provides optics as aliases to functions. But it is more heavyweight, though it provides more features.
In addition to this per-library comparison, prolens has a few unique features:
- Beginner-friendly documentation with usage examples
- Usage of
inspection-testingto guarantee the performance of optics - Property-based tests of lens and typeclasses laws to make sure that all abstractions behave properly
Acknowledgementπ
- Edward Kmett for lenses and profunctor typeclasses
- Well-Typed for the implementation of
optics