Skip to content

Instantly share code, notes, and snippets.

@ennioma
Created June 8, 2017 16:07
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 ennioma/430ddb9dfff863f8156c172ad3f4b5ad to your computer and use it in GitHub Desktop.
Save ennioma/430ddb9dfff863f8156c172ad3f4b5ad to your computer and use it in GitHub Desktop.
Lens definition
public struct Lens<Container, View> {
public let get: (Container) -> View
public let set: (Container, View) -> Container
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment