io.travisbrown.abstracted.package.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abstracted_2.10 Show documentation
Show all versions of abstracted_2.10 Show documentation
abstracted: forget your instance methods
The newest version!
package io.travisbrown
package object abstracted {
implicit final class Abstracted[A](val a: A) {
final def abstracted: Empty[A] = Empty(a)
}
}