method
coerce
v7.2.3 -
Show latest stable
- Class:
ActiveSupport::Duration
coerce(other)public
No documentation available.
# File activesupport/lib/active_support/duration.rb, line 245
def coerce(other) # :nodoc:
case other
when Scalar
[other, self]
when Duration
[Scalar.new(other.value), self]
else
[Scalar.new(other), self]
end
end