Class: Dry::Core::Equalizer
- Inherits:
-
Module
- Object
- Module
- Dry::Core::Equalizer
- Defined in:
- lib/dry/core/equalizer.rb
Overview
Define equality, equivalence and inspection methods
Defined Under Namespace
Modules: Methods
Instance Method Summary collapse
-
#initialize(*keys, **options) ⇒ undefined
constructor
private
Initialize an Equalizer with the given keys.
Constructor Details
#initialize(*keys, **options) ⇒ undefined
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Initialize an Equalizer with the given keys
Will use the keys with which it is initialized to define #cmp?, #hash, and #inspect
20 21 22 23 24 25 |
# File 'lib/dry/core/equalizer.rb', line 20 def initialize(*keys, **) super() @keys = keys.uniq define_methods(**) freeze end |