class Fixnum

Public Instance Methods

*(other) click to toggle source
# File lib/distance/core_ext/integer.rb, line 32
def *(other)
  other.is_a?(Distance) ? other * self : orig_multiply(other)
end
Also aliased as: orig_multiply
orig_multiply(other)
Alias for: *