StringGraph

trait StringGraph extends Graph[String, String]

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

Companion:
object
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
Inherited from:
Graph

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

sequence of triples in a graph

sequence of triples in a graph

Inherited from:
Graph