1
0
mirror of https://github.com/golang/go synced 2024-11-17 02:14:42 -07:00
Change-Id: I658075bc9f4a2a8cd749a0f06216def6b7258421
This commit is contained in:
qiulaidongfeng 2024-01-31 11:45:48 +08:00
parent a2c9e21f6c
commit 8e4099095c

View File

@ -13,7 +13,7 @@ const (
// Maximum key or elem size to keep inline (instead of mallocing per element).
// Must fit in a uint8.
// Fast versions cannot handle big elems - the cutoff size for
// Note: fast map functions cannot handle big elems (bigger than MapMaxElemBytes).
MapMaxKeyBytes = 128
MapMaxElemBytes = 128 // Must fit in a uint8.
)