方法
- B
- D
- E
- F
- G
- H
- I
- K
- M
- P
- S
- T
- W
- Z
常量
EXABYTE | = | PETABYTE * 1024 |
GIGABYTE | = | MEGABYTE * 1024 |
KILOBYTE | = | 1024 |
MEGABYTE | = | KILOBYTE * 1024 |
PETABYTE | = | TERABYTE * 1024 |
TERABYTE | = | GIGABYTE * 1024 |
ZETTABYTE | = | EXABYTE * 1024 |
实例公共方法
bytes() 链接
支持使用字节计算和声明,例如 45.bytes + 2.6.megabytes
2.bytes # => 2
也别名为:byte
来源:显示 | 在 GitHub 上
# File activesupport/lib/active_support/core_ext/numeric/bytes.rb, line 15 def bytes self end
days() 链接
返回与提供的日期数匹配的 Duration 实例。
2.days # => 2 days
也别名为:day
来源:显示 | 在 GitHub 上
# File activesupport/lib/active_support/core_ext/numeric/time.rb, line 37 def days ActiveSupport::Duration.days(self) end
exabytes() 链接
返回与提供的艾字节数等效的字节数。
2.exabytes # => 2_305_843_009_213_693_952
也别名为:exabyte
来源:显示 | 在 GitHub 上
# File activesupport/lib/active_support/core_ext/numeric/bytes.rb, line 63 def exabytes self * EXABYTE end
fortnights() 链接
返回与提供的两星期数匹配的 Duration 实例。
2.fortnights # => 4 weeks
也别名为:fortnight
来源:显示 | 在 GitHub 上
# File activesupport/lib/active_support/core_ext/numeric/time.rb, line 53 def fortnights ActiveSupport::Duration.weeks(self * 2) end
gigabytes() 链接
返回与提供的千兆字节数等效的字节数。
2.gigabytes # => 2_147_483_648
也别名为:gigabyte
来源:显示 | 在 GitHub 上
# File activesupport/lib/active_support/core_ext/numeric/bytes.rb, line 39 def gigabytes self * GIGABYTE end
hours() 链接
返回与提供的小时数匹配的 Duration 实例。
2.hours # => 2 hours
也别名为:hour
来源:显示 | 在 GitHub 上
# File activesupport/lib/active_support/core_ext/numeric/time.rb, line 29 def hours ActiveSupport::Duration.hours(self) end
html_safe?() 链接
来源:显示 | 在 GitHub 上
# File activesupport/lib/active_support/core_ext/string/output_safety.rb, line 13 def html_safe? true end
in_milliseconds() 链接
返回与提供的秒数等效的毫秒数。与标准时间持续时间一起使用。
2.in_milliseconds # => 2000
1.hour.in_milliseconds # => 3600000
来源:显示 | 在 GitHub 上
# File activesupport/lib/active_support/core_ext/numeric/time.rb, line 63 def in_milliseconds self * 1000 end
kilobytes() 链接
返回与提供的千字节数等效的字节数。
2.kilobytes # => 2048
也别名为:kilobyte
来源:显示 | 在 GitHub 上
# File activesupport/lib/active_support/core_ext/numeric/bytes.rb, line 23 def kilobytes self * KILOBYTE end
megabytes() 链接
返回与提供的兆字节数等效的字节数。
2.megabytes # => 2_097_152
也别名为:megabyte
来源:显示 | 在 GitHub 上
# File activesupport/lib/active_support/core_ext/numeric/bytes.rb, line 31 def megabytes self * MEGABYTE end
minutes() 链接
返回与提供的分钟数匹配的 Duration 实例。
2.minutes # => 2 minutes
也别名为:minute
来源:显示 | 在 GitHub 上
# File activesupport/lib/active_support/core_ext/numeric/time.rb, line 21 def minutes ActiveSupport::Duration.minutes(self) end
petabytes() 链接
返回与提供的拍字节数等效的字节数。
2.petabytes # => 2_251_799_813_685_248
也别名为:petabyte
来源:显示 | 在 GitHub 上
# File activesupport/lib/active_support/core_ext/numeric/bytes.rb, line 55 def petabytes self * PETABYTE end
seconds() 链接
返回与提供的秒数匹配的 Duration 实例。
2.seconds # => 2 seconds
也别名为:second
来源:显示 | 在 GitHub 上
# File activesupport/lib/active_support/core_ext/numeric/time.rb, line 13 def seconds ActiveSupport::Duration.seconds(self) end
terabytes() 链接
返回与提供的太字节数等效的字节数。
2.terabytes # => 2_199_023_255_552
也别名为:terabyte
来源:显示 | 在 GitHub 上
# File activesupport/lib/active_support/core_ext/numeric/bytes.rb, line 47 def terabytes self * TERABYTE end
weeks() 链接
返回与提供的星期数匹配的 Duration 实例。
2.weeks # => 2 weeks
也别名为:week
来源:显示 | 在 GitHub 上
# File activesupport/lib/active_support/core_ext/numeric/time.rb, line 45 def weeks ActiveSupport::Duration.weeks(self) end
zettabytes() 链接
返回与提供的泽字节数等效的字节数。
2.zettabytes # => 2_361_183_241_434_822_606_848
也别名为:zettabyte
来源:显示 | 在 GitHub 上
# File activesupport/lib/active_support/core_ext/numeric/bytes.rb, line 71 def zettabytes self * ZETTABYTE end