Method: Tangle::Directed::Graph#out_edges

Defined in:
lib/tangle/directed/graph.rb

#out_edges(vertex) ⇒ Object

Return the outgoing edges for vertex



48
49
50
# File 'lib/tangle/directed/graph.rb', line 48

def out_edges(vertex)
  edges(vertex).select { |edge| edge.tail?(vertex) }
end