t

scala.tools.nsc.doc.model

ImplicitMemberShadowing

trait ImplicitMemberShadowing extends AnyRef

Shadowing captures the information that the member is shadowed by some other members There are two cases of implicitly added member shadowing: 1) shadowing from an original class member (the class already has that member) in this case, it won't be possible to call the member directly, the type checker will fail attempting to adapt the call arguments (or if they fit it will call the original class method) 2) shadowing from other possible implicit conversions () this will result in an ambiguous implicit conversion error

Source
Entity.scala
Linear Supertypes
AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ImplicitMemberShadowing
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def ambiguatingMembers: List[MemberEntity]

    The members that ambiguate this implicit conversion Note: for ambiguatingMembers you have the following invariant: assert(ambiguatingMembers.foreach(_.byConversion.isDefined)

  2. abstract def shadowingMembers: List[MemberEntity]

    The members that shadow the current entry use .inTemplate to get to the template name

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ImplicitMemberShadowing toany2stringadd[ImplicitMemberShadowing] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ImplicitMemberShadowing, B)
    Implicit
    This member is added by an implicit conversion from ImplicitMemberShadowing toArrowAssoc[ImplicitMemberShadowing] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. def ensuring(cond: (ImplicitMemberShadowing) => Boolean, msg: => Any): ImplicitMemberShadowing
    Implicit
    This member is added by an implicit conversion from ImplicitMemberShadowing toEnsuring[ImplicitMemberShadowing] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (ImplicitMemberShadowing) => Boolean): ImplicitMemberShadowing
    Implicit
    This member is added by an implicit conversion from ImplicitMemberShadowing toEnsuring[ImplicitMemberShadowing] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: => Any): ImplicitMemberShadowing
    Implicit
    This member is added by an implicit conversion from ImplicitMemberShadowing toEnsuring[ImplicitMemberShadowing] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): ImplicitMemberShadowing
    Implicit
    This member is added by an implicit conversion from ImplicitMemberShadowing toEnsuring[ImplicitMemberShadowing] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  15. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ImplicitMemberShadowing toStringFormat[ImplicitMemberShadowing] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  16. final def getClass(): java.lang.Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def isAmbiguous: Boolean
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. def isShadowed: Boolean
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def [B](y: B): (ImplicitMemberShadowing, B)
    Implicit
    This member is added by an implicit conversion from ImplicitMemberShadowing toArrowAssoc[ImplicitMemberShadowing] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromImplicitMemberShadowing to any2stringadd[ImplicitMemberShadowing]

Inherited by implicit conversion StringFormat fromImplicitMemberShadowing to StringFormat[ImplicitMemberShadowing]

Inherited by implicit conversion Ensuring fromImplicitMemberShadowing to Ensuring[ImplicitMemberShadowing]

Inherited by implicit conversion ArrowAssoc fromImplicitMemberShadowing to ArrowAssoc[ImplicitMemberShadowing]

Ungrouped