An object containing implicits which are not in the default scope.
This implicit creates a conversion from any value for which an implicitOrdering exists to the class which creates infix operations.
This implicit creates a conversion from any value for which an implicitOrdering exists to the class which creates infix operations. With it imported, you can write methods as follows:
def lessThan[T: Ordering](x: T, y: T) = x < yNot in the standard scope due to the potential for divergence: For instanceimplicitly[Ordering[Any]] diverges in its presence.
Not in the standard scope due to the potential for divergence: For instanceimplicitly[Ordering[Any]] diverges in its presence.