Skip to content

Instantly share code, notes, and snippets.

@chenharryhua
Created July 18, 2020 05:23
Show Gist options
  • Save chenharryhua/d581ce58d868611eafe3bc20f671514c to your computer and use it in GitHub Desktop.
Save chenharryhua/d581ce58d868611eafe3bc20f671514c to your computer and use it in GitHub Desktop.
implicit def eqEnum[E <: Enumeration](implicit ev: shapeless.Witness.Aux[E]): Eq[E#Value] =
(x: E#Value, y: E#Value) => ev.value(x.id) == ev.value(y.id)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment