bytes | Package bytes implements functions for the manipulation of byte slices. |
fmt | Package fmt implements formatted I/O with functions analogous to C's printf and scanf. |
log | Package log implements a simple logging package. |
net/http | Package http provides HTTP client and server implementations. |
reflect | Package reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types. |
regexp | Package regexp implements regular expression search. |
regexp/syntax | Package syntax parses regular expressions into parse trees and compiles parse trees into programs. |
sort | Package sort provides primitives for sorting slices and user-defined collections. |
strings | Package strings implements simple functions to manipulate UTF-8 encoded strings. |
sync | Package sync provides basic synchronization primitives such as mutual exclusion locks. |
sync/atomic | Package atomic provides low-level atomic memory primitives useful for implementing synchronization algorithms. |
unsafe | Package unsafe contains operations that step around the type safety of Go programs. |