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