Created
February 22, 2024 09:14
-
-
Save stijnmoreels/82fdbe573c6995a2570403753488da9e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let guests = GuestList.create [ | |
Guest.create "Eve" | |
Guest.create "Lisa" ] | |
let lens = guest_ >=> name_ "Eve" | |
// result : ValidationResult<GuestList> | |
let result = Optic.set lens "AdamEve" guests |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment