eql?(other) -> bool
[permalink][rdoc][edit]-
other が Time かそのサブクラスのインスタンスであり自身と時刻が等しい場合に true を返します。そうでない場合に false を返します。
- [PARAM] other:
- 自身と比較したい時刻を Time オブジェクトを指定します。
p Time.local(2000, 1, 1).eql?(Time.local(2000, 1, 1)) # => true p Time.local(2000, 1, 1).eql?(Time.local(2000, 1, 2)) # => false