diff --git a/doc/go1.14.html b/doc/go1.14.html index 0c34245f622..f83b365704d 100644 --- a/doc/go1.14.html +++ b/doc/go1.14.html @@ -405,8 +405,22 @@ appropriately.)

Core library

+

New byte sequence hashing package

+ +

+ Go 1.14 includes a new package, + hash/maphash, + which provides hash functions on byte sequences. + These hash functions are intended to be used to implement hash tables or + other data structures that need to map arbitrary strings or byte + sequences to a uniform distribution on unsigned 64-bit integers. +

- All of the changes to the standard library are minor. + The hash functions are collision-resistant but not cryptographically secure. +

+

+ The hash value of a given byte sequence is consistent within a + single process, but will be different in different processes.

Minor changes to the library

@@ -603,24 +617,6 @@ appropriately.) -
hash/maphash
-
-

- This new package provides hash functions on byte sequences. - These hash functions are intended to be used to implement hash tables or - other data structures that need to map arbitrary strings or byte - sequences to a uniform distribution of integers. -

-

- The hash functions are collision-resistant but not cryptographically secure. -

-

- The hash value of a given byte sequence is consistent within a - single process, but will be different in different processes. -

-
-
-
io/ioutil