Class: BothIsGood::Comparators::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/both_is_good/comparators/base.rb

Direct Known Subclasses

FloatingPoint, SameId, StringCaseInsensitive

Instance Method Summary collapse

Constructor Details

#initialize(a, b) ⇒ Base

Returns a new instance of Base.



4
5
6
7
# File 'lib/both_is_good/comparators/base.rb', line 4

def initialize(a, b)
  @a = a
  @b = b
end