You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
key := []byte("some key") // from network, etc
var m map[string]T
....
v, ok := m[string(key)] // It would be nice if this were optimized away and didn't
actually make a copy & garbage
....
key := []byte("some key") // from network, etc var m map[string]T .... v, ok := m[string(key)] // It would be nice if this were optimized away and didn't actually make a copy & garbage ....