Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for numbytes (0.19 sec)

  1. internal/grid/types.go

    			buf.WriteByte('&')
    		}
    		buf.WriteString(keyEscaped)
    		buf.WriteByte('=')
    		buf.WriteString(url.QueryEscape(v))
    	}
    	return buf.String()
    }
    
    // NewBytes returns a new Bytes.
    // A slice is preallocated.
    func NewBytes() *Bytes {
    	b := Bytes(GetByteBuffer()[:0])
    	return &b
    }
    
    // NewBytesCap returns an empty Bytes with the given capacity.
    func NewBytesCap(size int) *Bytes {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 01 23:42:09 GMT 2024
    - 15.4K bytes
    - Viewed (0)
Back to top