All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xitrum.util.DefaultsTo.scala Maven / Gradle / Ivy

There is a newer version: 3.28.18
Show newest version
package xitrum.util

// http://groups.google.com/group/scala-user/browse_thread/thread/bb5214c5360b13c3

sealed class DefaultsTo[A, B]

trait LowPriorityDefaultsTo {
  implicit def overrideDefault[A, B] = new DefaultsTo[A, B]
}

object DefaultsTo extends LowPriorityDefaultsTo {
  implicit def default[B] = new DefaultsTo[B, B]
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy