Packages

  • package root
    Definition Classes
    root
  • package scala
    Definition Classes
    root
  • package tools
    Definition Classes
    scala
  • package nsc
    Definition Classes
    tools
  • package interpreter

    The main REPL related classes and values are as follows.

    The main REPL related classes and values are as follows. In addition to standard compiler classes Global and Settings, there are:

    History: an interface for session history. Completion: an interface for tab completion. ILoop (formerly InterpreterLoop): The umbrella class for a session. IMain (formerly Interpreter): Handles the evolving state of the session and handles submitting code to the compiler and handling the output. InteractiveReader: how ILoop obtains input. History: an interface for session history. Completion: an interface for tab completion. Power: a repository for more advanced/experimental features.

    ILoop contains { in: InteractiveReader, intp: IMain, settings: Settings, power: Power } InteractiveReader contains { history: History, completion: Completion } IMain contains { global: Global }

    Definition Classes
    nsc
  • package session

    Files having to do with the state of a repl session: lines of text entered, types and terms defined, etc.

    Files having to do with the state of a repl session: lines of text entered, types and terms defined, etc.

    Definition Classes
    interpreter
  • History
  • NoHistory
  • SimpleHistory

class SimpleHistory extends History

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SimpleHistory
  2. History
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SimpleHistory()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def add(item: CharSequence): Unit
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def asStrings: List[String]
    Definition Classes
    SimpleHistoryHistory
  7. def asStrings(from: Int, to: Int): List[String]
    Definition Classes
    History
  8. val buf: Buffer[String]
    Attributes
    protected
  9. def clear(): Unit
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  11. def current(): String
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def get(idx: Int): CharSequence
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def historicize(text: String): Boolean
    Definition Classes
    History
  19. def index: Int
    Definition Classes
    SimpleHistoryHistory
  20. def isEmpty: Boolean
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. def last: String
  23. def maxSize: Int
  24. def moveTo(idx: Int): Boolean
  25. def moveToEnd(): Unit
  26. def moveToFirst(): Boolean
  27. def moveToLast(): Boolean
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. def next(): Boolean
  30. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  32. def previous(): Boolean
  33. def remove(idx: Int): CharSequence
  34. def removeFirst(): CharSequence
  35. def removeLast(): CharSequence
  36. def replace(item: CharSequence): Unit
  37. def set(idx: Int, to: CharSequence): Unit
  38. def size: Int
    Definition Classes
    SimpleHistoryHistory
  39. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  40. def toString(): String
    Definition Classes
    AnyRef → Any
  41. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from History

Inherited from AnyRef

Inherited from Any

Ungrouped