Packages

trait Phased extends AnyRef

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

Source
Phased.scala
Linear Supertypes
AnyRef, Any
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. All

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

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from Phased to any2stringadd[Phased]

Inherited by implicit conversion StringFormat from Phased to StringFormat[Phased]

Inherited by implicit conversion Ensuring from Phased to Ensuring[Phased]

Inherited by implicit conversion ArrowAssoc from Phased to ArrowAssoc[Phased]

Ungrouped