class Matching::Match
Defines a pair of objects that have been matched by the matcher
Attributes
left_obj[R]
right_obj[R]
score[RW]
Public Class Methods
new(left_obj, right_obj, score)
click to toggle source
# File lib/matching/match.rb, line 8 def initialize(left_obj, right_obj, score) @left_obj = left_obj @right_obj = right_obj @score = score end