edu.washington.cs.knowitall.collection.immutable

graph

package graph

Visibility
  1. Public
  2. All

Type Members

  1. class Bipath[T] extends AnyRef

    A representation of a path through a graph.

  2. sealed abstract class DirectedEdge[T] extends AnyRef

    an edge with a direction.

  3. sealed trait Direction extends AnyRef

    represents a direction in a graph

  4. class DownEdge[T] extends DirectedEdge[T]

    an edge that is traversed in the Down direction.

  5. class Graph[T] extends AnyRef

    A graph representation where data is stored in vertices and edges are represented with adjacency lists.

  6. class UpEdge[T] extends DirectedEdge[T]

    an edge that is traversed in the Up direction.

Value Members

  1. object Direction extends AnyRef

  2. object DownEdge extends AnyRef

  3. object Graph extends AnyRef

  4. object UpEdge extends AnyRef

  5. package pattern