StringGraph

trait StringGraph extends Graph[String, String]

Simple graphs whose nodes and edges are strings They are used for testing purposes mainly

Companion
object
trait Graph[String, String]
class Object
trait Matchable
class Any

Type members

Inherited types

type Neighs_ = Seq[Neigh[Edge, Node]]
Inherited from
Graph

Value members

Inherited methods

def in: String => Seq[(String, String)]

input edges and referenced nodes from a node

input edges and referenced nodes from a node

Inherited from
Graph
def neighbours(node: String): Neighs_
Inherited from
Graph
def nodes: Seq[String]

List of nodes

List of nodes

Inherited from
Graph
def out: String => Seq[(String, String)]

output edges and referenced nodes from a node

output edges and referenced nodes from a node

Inherited from
Graph
def triples: Seq[(String, String, String)]

sequence of triples in a graph

sequence of triples in a graph

Inherited from
Graph