Packages

p

implicitbox

package implicitbox

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. sealed trait Not[A] extends AnyRef

    Type for proving that an implicit parameter does not exist in scope.

    Type for proving that an implicit parameter does not exist in scope.

    Credits

    Code was copied from Shapeless, authored by Miles Sabin.

    Annotations
    @implicitNotFound("An implicit for ${A} exists in scope, cannot prove its absence")
  2. sealed trait Priority[+P, +F] extends AnyRef

    Priority is a type class for prioritized implicit search.

    Priority is a type class for prioritized implicit search.

    This type class will attempt to provide an implicit instance of P (the preferred type). If that type is not available it will fallback to F (the fallback type). If neither type is available then a Priority[P, F] instance will not be available.

    This type can be useful for problems where multiple algorithms can be used, depending on the type classes available.

    Credits

    Priority is a type copied from Algebra, authored by Erik Osheim.

    Annotations
    @implicitNotFound("No implicit exists in scope for either ${P} or for ${F}")

Value Members

  1. object Not
  2. object Priority extends FindPreferred

Ungrouped