object ConsoleOut

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ConsoleOut
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def bufferedWriterOut(out: BufferedWriter): ConsoleOut
  2. def overwriteContaining(s: String): (String, String) ⇒ Boolean
  3. def printStreamOut(out: PrintStream): ConsoleOut
  4. def printWriterOut(out: PrintWriter): ConsoleOut
  5. def systemOut: ConsoleOut
  6. def systemOutOverwrite(f: (String, String) ⇒ Boolean): ConsoleOut

    ConsoleOut instance that is backed by System.out.

    ConsoleOut instance that is backed by System.out. It overwrites the previously printed line if the function f(lineToWrite, previousLine) returns true.

    The ConsoleOut returned by this method assumes that the only newlines are from println calls and not in the String arguments.