Scala library providing Lens[R,V] typeclass derivation.
- Scala >= 3.6.2
Use with SBT
libraryDependencies += "org.encalmo" % "lens_3" % "0.9.0"
or with SCALA-CLI
//> using dep org.encalmo::lens:0.9.2
case class Person(firstName: String, lastName: String, address: Address)
case class Address(street1: String, street2: Option[String] = None, postcode: String, town: String, country: String)
val townLens = Lens[Person].address.town
val mike = Person("Mike","Hart", Address("1 Abbey Road", None, "BN15 KJ", "Exeter", "United Kingdom"))
val town = townLens.get(mike)
townLens.set(mike)("Derby")
townLens.update(mike, town => town.toUpperCase())
├── .github
│ └── workflows
│ ├── pages.yaml
│ ├── release.yaml
│ └── test.yaml
│
├── .gitignore
├── .scalafmt.conf
├── Lens.scala
├── LensMacro.scala
├── LensSpec.test.scala
├── LICENSE
├── project.scala
├── README.md
└── test.sh