com.github.johnreedlol

Macro

object Macro

Scala specific debug methods.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Macro
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. object assertCode

    Same as Debug.

  8. object checkCode

    Same as Debug.

  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. object codeErr

    Same as Debug.

  11. object codeOut

    Same as Debug.

  12. def contentsErr[ContainedT](coll: GenTraversableOnce[ContainedT], start: Int = 0, numElements: Int = Int.MaxValue, numLines: Int = 1)(implicit tag: scala.reflect.api.JavaUniverse.WeakTypeTag[ContainedT]): String

    Traces the contents of a Scala container to standard error.

    Traces the contents of a Scala container to standard error. To convert a Java container into a Scala container, import collection.JavaConversions._ Note: The maximum number of elements it can print is 2 to the 32 elements.

    coll

    the Scala collection. TraversableLike is a base trait of all kinds of Scala collections.

    start

    the index of the first element to print. To work on all containers, index is counted using an iterator.

    numElements

    the number of elements you want to trace. Defaults to all elements in the collection (or 2 to the 32 elements)

    numLines

    the number of lines of stack trace.

    returns

    the string containing what was printed or what would have been printed if printing was enabled.

  13. def contentsOut[ContainedT](coll: GenTraversableOnce[ContainedT], start: Int = 0, numElements: Int = Int.MaxValue, numLines: Int = 1)(implicit tag: scala.reflect.api.JavaUniverse.WeakTypeTag[ContainedT]): String

    Traces the contents of a Scala container to standard out.

    Traces the contents of a Scala container to standard out. To convert a Java container into a Scala container, import collection.JavaConversions._ Note: The maximum number of elements it can print is 2 to the 32 elements.

    coll

    the Scala collection. TraversableLike is a base trait of all kinds of Scala collections.

    start

    the index of the first element to print. To work on all containers, index is counted using an iterator.

    numElements

    the number of elements you want to trace. Defaults to all elements in the collection (or 2 to the 32 elements)

    numLines

    the number of lines of stack trace.

    returns

    the string containing what was printed or what would have been printed if printing was enabled.

  14. object desugarErr

    Same as Debug.

  15. object desugarOut

    Same as Debug.

  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. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  20. def getCollectionAsString(coll: GenTraversableOnce[_], start: Int = 0, numElements: Int = Int.MaxValue): String

    Gets the collection as a string of n elements from start to start + numElements

    Gets the collection as a string of n elements from start to start + numElements

    Attributes
    protected[com.github.johnreedlol]
  21. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  22. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  27. def toString(): String

    Definition Classes
    AnyRef → Any
  28. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped