Package

grizzled

io

Permalink

package io

I/O-related classes and utilities. This package is distinguished from the grizzled.file package in that this package operates on already-open Java InputStream, OutputStream, Reader and Writer objects, and on Scala Source objects.

See grizzled.file

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

Type Members

  1. class MultiSource extends Source

    Permalink

    A MultiSource contains multiple scala.io.Source objects and satisfies reads from them serially.

    A MultiSource contains multiple scala.io.Source objects and satisfies reads from them serially. Once composed, a MultiSource can be used anywhere a Source is used.

  2. trait PartialReader[T] extends AnyRef

    Permalink

    Contains methods that can read part of a stream or reader.

  3. class RichInputStream extends PartialReader[Byte]

    Permalink

    Provides additional methods, over and above those already present in the Java InputStream class.

    Provides additional methods, over and above those already present in the Java InputStream class. The implicits object contains implicit conversions between RichInputStream and InputStream.

  4. class RichReader extends PartialReader[Char]

    Permalink

    Provides additional methods, over and above those already present in the Java Reader class.

    Provides additional methods, over and above those already present in the Java Reader class. The implicits object contains implicit conversions between RichReader and Reader.

  5. class SourceReader extends Reader

    Permalink

    Provides a java.io.Reader that is backed by a Scala Source object.

Value Members

  1. object Implicits

    Permalink
  2. object RichInputStream

    Permalink

    Companion object to RichInputStream class.

    Companion object to RichInputStream class. Importing this object brings the implicit conversations into scope.

  3. object RichReader

    Permalink

    Companion object to RichReader class.

    Companion object to RichReader class. Importing this object brings the implicit conversations into scope.

  4. object SourceReader

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped