Skip to content

Instantly share code, notes, and snippets.

@lu4nm3
Created May 14, 2020 04:22
Show Gist options
  • Save lu4nm3/f20b2210b97b88c182176237b5bb925c to your computer and use it in GitHub Desktop.
Save lu4nm3/f20b2210b97b88c182176237b5bb925c to your computer and use it in GitHub Desktop.
object OutsourcedPerishables {
implicit val iceCreamPerishable: Perishable[IceCream] = new Perishable[IceCream] {
def expired(i: IceCream): Boolean = true // in reality you would actually calculate the expiration for ice cream
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment