bufio | Package bufio implements buffered I/O. It wraps an io.Reader or io.Writer object, creating another object (Reader or Writer) that also implements the interface but provides buffering and some help for textual I/O. |
bytes | Package bytes implements functions for the manipulation of byte slices. |
cmd/compile/internal/base | |
cmd/compile/internal/coverage | |
cmd/compile/internal/deadcode | |
cmd/compile/internal/devirtualize | Package devirtualize implements two "devirtualization" optimization passes: |
cmd/compile/internal/dwarfgen | |
cmd/compile/internal/escape | |
cmd/compile/internal/inline | |
cmd/compile/internal/ir | |
cmd/compile/internal/liveness | |
cmd/compile/internal/logopt | |
cmd/compile/internal/loopvar | Package loopvar applies the proper variable capture, according to experiment, flags, language version, etc. |
cmd/compile/internal/noder | |
cmd/compile/internal/objw | |
cmd/compile/internal/pgo | |
cmd/compile/internal/pkginit | |
cmd/compile/internal/reflectdata | |
cmd/compile/internal/ssa | |
cmd/compile/internal/ssagen | |
cmd/compile/internal/staticdata | |
cmd/compile/internal/staticinit | |
cmd/compile/internal/typecheck | |
cmd/compile/internal/types | |
cmd/compile/internal/walk | |
cmd/internal/archive | Package archive implements reading of archive files generated by the Go toolchain. |
cmd/internal/bio | Package bio implements common I/O abstractions used within the Go toolchain. |
cmd/internal/dwarf | Package dwarf generates DWARF debugging information. |
cmd/internal/obj | |
cmd/internal/objabi | |
cmd/internal/src | |
encoding/json | Package json implements encoding and decoding of JSON as defined in RFC 7159. |
flag | Package flag implements command-line flag parsing. |
fmt | Package fmt implements formatted I/O with functions analogous to C's printf and scanf. |
go/constant | Package constant implements Values representing untyped Go constants and their corresponding operations. |
internal/buildcfg | Package buildcfg provides access to the build configuration described by the current environment. |
internal/race | Package race contains helper functions for manually instrumenting code for the race detector. |
log | Package log implements a simple logging package. |
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. |
os | Package os provides a platform-independent interface to operating system functionality. |
runtime | Package runtime contains operations that interact with Go's runtime system, such as functions to control goroutines. |
runtime/pprof | Package pprof writes runtime profiling data in the format expected by the pprof visualization tool. |
runtime/trace | Package trace contains facilities for programs to generate traces for the Go execution tracer. |
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. |