net/netip.Addr.Is6 (method)

15 uses

	net/netip (current package)
		netip.go#L440: 	if ip.Is6() {
		netip.go#L468: 	return ip.Is6() && ip.addr.hi == 0 && ip.addr.lo>>32 == 0xffff
		netip.go#L473: func (ip Addr) Is6() bool {
		netip.go#L492: 	if !ip.Is6() {
		netip.go#L506: 	if !ip.Is6() {
		netip.go#L531: 	if ip.Is6() {
		netip.go#L550: 	if ip.Is6() {
		netip.go#L569: 	if ip.Is6() {
		netip.go#L580: 	if ip.Is6() && !ip.Is4In6() {
		netip.go#L599: 	if ip.Is6() {
		netip.go#L654: 	if ip.Is6() {
		netip.go#L1133: 	} else if !v6 && ipp.ip.Is6() {
		netip.go#L1378: 	if ip.Is6() && ip.z != z6noz {
		netip.go#L1394: 	if ip.Is6() {

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