method

coerce_other

v2_4_6 - Show latest stable - Class: IPAddr
coerce_other(other)
private

No documentation available.

# File lib/ipaddr.rb, line 513
  def coerce_other(other)
    case other
    when IPAddr
      other
    when String
      self.class.new(other)
    else
      self.class.new(other, @family)
    end
  end