Skip to content

Instantly share code, notes, and snippets.

@patryk-scalac-io
Created June 15, 2017 06:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save patryk-scalac-io/d2ae9571b1f21c5b3995c153660e57fe to your computer and use it in GitHub Desktop.
Save patryk-scalac-io/d2ae9571b1f21c5b3995c153660e57fe to your computer and use it in GitHub Desktop.
// first create some Street value to play with
val street = Street("Abbey Road", 44)
street: Street = Street(Abbey Road,44)
// "focus" to street
nameLens.get(street)
// res0: String = Abbey Road
// set new street name
nameLens.set("Newton Street")(street)
// res2: Street = Street(Newton Street,44)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment