Home
last modified time | relevance | path

Searched defs:http2sorter (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/net/http/
Dh2_bundle.go3645 type http2sorter struct { struct
3646 v []string // owned by sorter
3649 func (s *http2sorter) Len() int { return len(s.v) }
3651 func (s *http2sorter) Swap(i, j int) { s.v[i], s.v[j] = s.v[j], s.v[i] }
3653 func (s *http2sorter) Less(i, j int) bool { return s.v[i] < s.v[j] }
3659 func (s *http2sorter) Keys(h Header) []string {
3669 func (s *http2sorter) SortStrings(ss []string) {