trait Phased extends AnyRef

Mix this into an object and use it as a phasing Swiss Army knife.

Source
Phased.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Phased
  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

Type Members

  1. sealed abstract class PhaseName extends AnyRef

Abstract Value Members

  1. abstract val global: Global

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 Phased toany2stringadd[Phased] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (Phased, B)
    Implicit
    This member is added by an implicit conversion from Phased toArrowAssoc[Phased] 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 at[T](ph: PhaseName)(body: => T): T
  8. def atCurrent[T](body: => T): T
  9. def atMap[T](phs: Seq[PhaseName])(body: => T): Seq[(PhaseName, T)]
  10. def atMulti[T](phs: Seq[PhaseName])(body: => T): Seq[T]
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  12. def ensuring(cond: (Phased) => Boolean, msg: => Any): Phased
    Implicit
    This member is added by an implicit conversion from Phased toEnsuring[Phased] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: (Phased) => Boolean): Phased
    Implicit
    This member is added by an implicit conversion from Phased toEnsuring[Phased] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean, msg: => Any): Phased
    Implicit
    This member is added by an implicit conversion from Phased toEnsuring[Phased] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean): Phased
    Implicit
    This member is added by an implicit conversion from Phased toEnsuring[Phased] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  18. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  19. def get: PhaseName
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. def multi[T](body: => T): Seq[T]
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. def parse(str: String): PhaseName
  28. implicit def phaseEnumToPhase(name: PhaseName): Phase
  29. def set(phase: PhaseName): Boolean
  30. def setMulti(phases: Seq[PhaseName]): Boolean
  31. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  32. def toString(): String
    Definition Classes
    AnyRef → Any
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  36. case object Cleanup extends PhaseName with Product with Serializable
  37. case object Constructors extends PhaseName with Product with Serializable
  38. case object Delambdafy extends PhaseName with Product with Serializable
  39. case object Erasure extends PhaseName with Product with Serializable
  40. case object Explicitouter extends PhaseName with Product with Serializable
  41. case object Extmethods extends PhaseName with Product with Serializable
  42. case object Fields extends PhaseName with Product with Serializable
  43. case object Flatten extends PhaseName with Product with Serializable
  44. case object Jvm extends PhaseName with Product with Serializable
  45. case object Lambdalift extends PhaseName with Product with Serializable
  46. case object Mixin extends PhaseName with Product with Serializable
  47. case object Namer extends PhaseName with Product with Serializable
  48. case object NoPhaseName extends PhaseName with Product with Serializable
  49. case object Packageobjects extends PhaseName with Product with Serializable
  50. case object Parser extends PhaseName with Product with Serializable
  51. case object Patmat extends PhaseName with Product with Serializable
  52. object PhaseName
  53. case object Pickler extends PhaseName with Product with Serializable
  54. case object PostErasure extends PhaseName with Product with Serializable
  55. case object Refchecks extends PhaseName with Product with Serializable
  56. case object Specialize extends PhaseName with Product with Serializable
  57. case object Superaccessors extends PhaseName with Product with Serializable
  58. case object Tailcalls extends PhaseName with Product with Serializable
  59. case object Terminal extends PhaseName with Product with Serializable
  60. case object Typer extends PhaseName with Product with Serializable
  61. case object Uncurry extends PhaseName with Product with Serializable

Deprecated Value Members

  1. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Phased toStringFormat[Phased] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  2. def [B](y: B): (Phased, B)
    Implicit
    This member is added by an implicit conversion from Phased toArrowAssoc[Phased] 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 fromPhased to any2stringadd[Phased]

Inherited by implicit conversion StringFormat fromPhased to StringFormat[Phased]

Inherited by implicit conversion Ensuring fromPhased to Ensuring[Phased]

Inherited by implicit conversion ArrowAssoc fromPhased to ArrowAssoc[Phased]

Ungrouped