Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 21 of 21 for SubZone (0.1 sec)

  1. src/net/netip/netip.go

    func (ip Addr) Prev() Addr {
    	if ip.Is4() {
    		if uint32(ip.addr.lo) == 0 {
    			return Addr{}
    		}
    	} else if ip.addr.isZero() {
    		return Addr{}
    	}
    	ip.addr = ip.addr.subOne()
    	return ip
    }
    
    // String returns the string form of the IP address ip.
    // It returns one of 5 forms:
    //
    //   - "invalid IP", if ip is the zero [Addr]
    //   - IPv4 dotted decimal ("192.0.2.1")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top