bytes | Package bytes implements functions for the manipulation of byte slices. |
encoding/binary | Package binary implements simple translation between numbers and byte sequences and encoding and decoding of varints. |
io | Package io provides basic interfaces to I/O primitives. |
io/ioutil | Package ioutil implements some I/O utility functions. |
math/rand | Package rand implements pseudo-random number generators suitable for tasks such as simulation, but it should not be used for security-sensitive work. |
net | Package net provides a portable interface for network I/O, including TCP/IP, UDP, domain name resolution, and Unix domain sockets. |
runtime | Package runtime contains operations that interact with Go's runtime system, such as functions to control goroutines. |
sync | Package sync provides basic synchronization primitives such as mutual exclusion locks. |
testing | Package testing provides support for automated testing of Go packages. |
time | Package time provides functionality for measuring and displaying time. |