Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for NewURLValues (0.13 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. internal/grid/types.go

    type URLValues map[string][]string
    
    var urlValuesPool = bpool.Pool[map[string][]string]{
    	New: func() map[string][]string {
    		return make(map[string][]string, 10)
    	},
    }
    
    // NewURLValues returns a new URLValues.
    func NewURLValues() *URLValues {
    	u := URLValues(urlValuesPool.Get())
    	return &u
    }
    
    // NewURLValuesWith returns a new URLValues with the provided content.
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 15.5K bytes
    - Click Count (0)
Back to Top