Tracks
/
F#
F#
/
Exercises
/
Lens Person
Lens Person

Lens Person

Hard

Instructions

Use lenses to update nested records (specific to languages with immutable data).

Updating fields of nested, immutable records is kind of annoying. The code for such cases is as cumbersome as the structure is deep. If you have, say, a Person, that contains an Address, which has a Street, that has a Number, updating the Number requires creating a new Street with the new Number, then a new Address with the new Street and, finally, a new Person with the new Address. Confused already?

One solution to this problem is to use lenses.

Implement several record accessing functions using lenses. The test suite also allows you to avoid lenses altogether so you can experiment with different approaches.

  • This exercise expects you to use the Aether library, which adds lenses functionality to F#. With lenses, you can quite easily read or update nested structures.
Edit via GitHub The link opens in a new window or tab
F# Exercism

Ready to start Lens Person?

Sign up to Exercism to learn and master F# with 14 concepts, 133 exercises, and real human mentoring, all for free.