Skip to content

Instantly share code, notes, and snippets.

@patryk-scalac-io
Created June 15, 2017 06:48
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/bb3438c68ae22843d6dab6bc4fa2006e to your computer and use it in GitHub Desktop.
Save patryk-scalac-io/bb3438c68ae22843d6dab6bc4fa2006e to your computer and use it in GitHub Desktop.
def upperCaseWithCopy(person: Person): Person =
person.copy(address = person.address.copy(
street = person.address.street.copy(
name = person.address.street.name.toUpperCase
)
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment