class Construqt::Cables::Cable

Attributes

left[R]
right[R]

Public Class Methods

new(left, right) click to toggle source
# File lib/construqt/cables.rb, line 17
def initialize(left, right)
  @left = left
  @right = right
end

Public Instance Methods

key() click to toggle source
# File lib/construqt/cables.rb, line 22
def key
  [left.name, right.name].sort.join("<=>")
end