= private = protected
ipv4_mapped?()
Returns true if the ipaddr is an IPv4-mapped IPv6 address.
# File lib/ipaddr.rb, line 244 def ipv4_mapped? return ipv6? && (@addr >> 32) == 0xffff end