class Society::Edge
The Edge
class represents an edge between two nodes in a graph. An edge is assumed to represent a direct relationship between two Classes or Modules.
Attributes
to[R]
weight[R]
Public Class Methods
Public Instance Methods
+(edge)
click to toggle source
to_s()
click to toggle source
Public: Return the name of the node to which the edge points.
Returns a string.
# File lib/society/edge.rb, line 34 def to_s to.to_s end
Also aliased as: inspect