instance method to_i

Ruby on Rails 8.1.2

Since v4.2.9

Available in: v4.2.9 v5.2.8.1 v6.0.6 v6.1.7.10 v7.0.10 v7.1.6 v7.2.3 v8.0.4 v8.1.2

Signature

to_i()

Returns the number of seconds that this Duration represents.

1.minute.to_i   # => 60
1.hour.to_i     # => 3600
1.day.to_i      # => 86400

Note that this conversion makes some assumptions about the duration of some periods, e.g. months are always 1/12 of year and years are 365.2425 days:

# equivalent to (1.year / 12).to_i
1.month.to_i    # => 2629746

# equivalent to 365.2425.days.to_i
1.year.to_i     # => 31556952

In such cases, Ruby’s core Date and Time should be used for precision date and time arithmetic.

Source
# File activesupport/lib/active_support/duration.rb, line 377
    def to_i
      @value.to_i
    end

Defined in activesupport/lib/active_support/duration.rb line 377 · View on GitHub · Improve this page · Find usages on GitHub

Defined in ActiveSupport::Duration

Type at least 2 characters to search.

↑↓ navigate · open · esc close