Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MakeAddrRanges (0.42 sec)

  1. src/runtime/export_test.go

    // Add.
    func NewAddrRanges() AddrRanges {
    	r := addrRanges{}
    	r.init(testSysStat)
    	return AddrRanges{r, true}
    }
    
    // MakeAddrRanges creates a new addrRanges populated with
    // the ranges in a.
    //
    // The returned AddrRanges is immutable, so methods like
    // Add will fail.
    func MakeAddrRanges(a ...AddrRange) AddrRanges {
    	// Methods that manipulate the backing store of addrRanges.ranges should
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
Back to top