class

Molinillo::DependencyGraph::Vertex(P, R)

Inherits Reference < Object

Constructors

new(name : String, payload : P)
Source

Instance methods

==(other)

Returns false (other can only be a Value here).

Source
explicit_requirements
Source
hash(hasher)

See Object#hash(hasher)

Source
incoming_edges
Source
name
Source
name=(name : String)
Source
outgoing_edges
Source
path_to?(other)

Is there a path from self to other following edges in the dependency graph? @return true iff there is a path following edges within this {#graph}

Source
payload
Source
payload=(payload : P)
Source
predecessors

@return [Array<Vertex>] the vertices of {#graph} that have an edge with self as their {Edge#destination}

Source
requirements

@return [Array] all of the requirements that required this vertex

Source
root
Source
root=(root : Bool)
Source
successors

@return [Array<Vertex>] the vertices of {#graph} that have an edge with self as their {Edge#origin}

Source