Method: Cassandra::Types::Duration#hash
- Defined in:
- lib/cassandra/duration.rb
#hash ⇒ Object
58 59 60 61 62 63 64 65 66 |
# File 'lib/cassandra/duration.rb', line 58 def hash @hash ||= begin h = 17 h = 31 * h + @months.hash h = 31 * h + @days.hash h = 31 * h + @nanos.hash h end end |