instance method IPAddr#to_string

to_string -> String[permalink][rdoc][edit]

標準的な文字列表現に変換します。

require 'ipaddr'
addr6 = IPAddr.new('::1')
addr6.to_s       #=> "::1"
addr6.to_string  #=> "0000:0000:0000:0000:0000:0000:0000:0001"

[SEE_ALSO] IPAddr#to_s