Skip to content

Instantly share code, notes, and snippets.

@jmjava
Created January 28, 2018 17:57
Show Gist options
  • Save jmjava/74ee7294bf2a3f0a08af2341df8280df to your computer and use it in GitHub Desktop.
Save jmjava/74ee7294bf2a3f0a08af2341df8280df to your computer and use it in GitHub Desktop.
Herding Cats
implicit val intCanTruthy: CanTruthy[Int] = CanTruthy.fromTruthy({
case 0 => false
case _ => true
})
import CanTruthy.ops._
10.truthy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment