module Backup::Backblaze::RetryLookup::Matcher
Public Instance Methods
===(other)
click to toggle source
# File lib/backup/backblaze/retry_lookup.rb, line 10 def ====== other return false unless size == other.size size.times.all? do |idx| self[idx] === other[idx] end end