Skip to content

Instantly share code, notes, and snippets.

@vhutov
Created June 23, 2020 22:25
Show Gist options
  • Save vhutov/8a3a4ec0f2b842688c8c6bd47059a0b8 to your computer and use it in GitHub Desktop.
Save vhutov/8a3a4ec0f2b842688c8c6bd47059a0b8 to your computer and use it in GitHub Desktop.
abstract class Inject[A, B] {
def inj: A ⇒ B
def prj: B ⇒ Option[A]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment