Package

quiver

Permalink

package quiver

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

Type Members

  1. type Adj[N, B] = Vector[(B, N)]

    Permalink
  2. type GraphRep[N, A, B] = Map[N, GrContext[N, A, B]]

    Permalink
  3. type LPath[N, A] = (N, Vector[(N, A)])

    Permalink
  4. type LRTree[N, A] = Stream[LPath[N, A]]

    Permalink
  5. type Path[N] = Vector[N]

    Permalink
  6. type RTree[N] = Stream[Path[N]]

    Permalink
  7. type UEdge[N] = LEdge[N, Unit]

    Permalink
  8. type UNode[N] = LNode[N, Unit]

    Permalink

Value Members

  1. object GraphCodecs

    Permalink
  2. def addPred[N, A, B](g: GraphRep[N, A, B], v: N, lss: Vector[(B, N)]): GraphRep[N, A, B]

    Permalink
  3. def addSucc[N, A, B](g: GraphRep[N, A, B], v: N, lps: Vector[(B, N)]): GraphRep[N, A, B]

    Permalink
  4. def banana(n: Int, k: Int): Graph[Int, Unit, Unit]

    Permalink
  5. def buildGraph[N, A, B](ctxs: Seq[Context[N, A, B]]): Graph[N, A, B]

    Permalink
  6. def clear[N, A, B](g: GraphRep[N, A, B], v: N, ns: Vector[N], f: (GrContext[N, A, B]) ⇒ GrContext[N, A, B]): GraphRep[N, A, B]

    Permalink
  7. def clearPred[N, A, B](g: GraphRep[N, A, B], v: N, ns: Vector[N]): GraphRep[N, A, B]

    Permalink
  8. def clearSucc[N, A, B](g: GraphRep[N, A, B], v: N, ns: Vector[N]): GraphRep[N, A, B]

    Permalink
  9. implicit def contextOrder[N, A, B](implicit N: Order[N], A: Order[A], B: Order[B]): Order[Context[N, A, B]]

    Permalink
  10. def cycle[N](vs: Seq[N]): Graph[N, Unit, Unit]

    Permalink
  11. implicit def edgeOrder[N, A](implicit N: Order[N]): Order[Edge[N]]

    Permalink
  12. def empty[N, A, B]: Graph[N, A, B]

    Permalink
  13. def fromAdj[N, B](adj: Adj[N, B]): Map[N, Set[B]]

    Permalink
  14. implicit def gDecompOrder[N, A, B](implicit arg0: Order[N], arg1: Order[A], arg2: Order[B]): Order[GDecomp[N, A, B]]

    Permalink
  15. def getLPath[N, A](v: N, t: LRTree[N, A]): Option[LPath[N, A]]

    Permalink
  16. def getLPaths[N, A](v: N, t: LRTree[N, A]): Stream[LPath[N, A]]

    Permalink
  17. def getPath[N](v: N, t: RTree[N]): Option[Path[N]]

    Permalink
  18. implicit def graphMonoid[N, A, B]: Monoid[Graph[N, A, B]]

    Permalink
  19. implicit def graphOrder[N, A, B](implicit N: Order[N], A: Order[A], B: Order[B]): Order[Graph[N, A, B]]

    Permalink
  20. implicit def ledgeOrder[N, A](implicit N: Order[N], A: Order[A]): Order[LEdge[N, A]]

    Permalink
  21. def mkGraph[N, A, B](vs: Seq[LNode[N, A]], es: Seq[LEdge[N, B]]): Graph[N, A, B]

    Permalink
  22. implicit def nodeOrder[N, A](implicit N: Order[N], A: Order[A]): Order[LNode[N, A]]

    Permalink
  23. def poset[N, A](ns: Seq[(N, A)])(implicit N: PartialOrdering[N]): Graph[N, A, Unit]

    Permalink
  24. def reverseLPath[N, A](p: LPath[N, A]): LPath[N, A]

    Permalink
  25. def safeMkGraph[N, A, B](vs: Seq[LNode[N, A]], es: Seq[LEdge[N, B]]): Graph[N, A, B]

    Permalink
  26. def star(n: Int): Graph[Int, Unit, Unit]

    Permalink
  27. def toAdj[N, B](bs: Map[N, Set[B]]): Adj[N, B]

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped