net/netip.Addr.Is6 (method)

15 uses

	net/netip (current package)
		netip.go#L441: 	if ip.Is6() {
		netip.go#L467: 	return ip.Is6() && ip.addr.hi == 0 && ip.addr.lo>>32 == 0xffff
		netip.go#L472: func (ip Addr) Is6() bool {
		netip.go#L491: 	if !ip.Is6() {
		netip.go#L505: 	if !ip.Is6() {
		netip.go#L530: 	if ip.Is6() {
		netip.go#L549: 	if ip.Is6() {
		netip.go#L568: 	if ip.Is6() {
		netip.go#L579: 	if ip.Is6() && !ip.Is4In6() {
		netip.go#L598: 	if ip.Is6() {
		netip.go#L653: 	if ip.Is6() {
		netip.go#L1120: 	} else if !v6 && ipp.ip.Is6() {
		netip.go#L1348: 	if ip.Is6() && ip.z != z6noz {
		netip.go#L1364: 	if ip.Is6() {

	net
		addrselect.go#L320: 	ipv6 := ip.Is6() && !ip.Is4In6()